-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
61 lines (49 loc) · 2.88 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!DOCTYPE html>
<html>
<head>
<title>Star Trek Episodes</title>
<link href="https://fonts.googleapis.com/css?family=Roboto|Roboto+Condensed|Roboto+Mono|Roboto+Slab" rel="stylesheet">
<link rel="icon" href="https://upload.wikimedia.org/wikipedia/commons/6/67/Delta-shield.png">
<link href="style/style.css" rel="stylesheet" type="text/css" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="js/formatting.js"></script>
</head>
<body>
<nav>
<ul class="nav" id="series-nav">
<li><a href="index.html">Home</a></li>
<li><a href="the-original-series.html">TOS</a></li>
<li><a href="the-animated-series.html">TAS</a></li>
<li><a href="the-next-generation.html">TNG</a></li>
<li><a href="deep-space-nine.html">DS9</a></li>
<li><a href="voyager.html">VOY</a></li>
<li><a href="enterprise.html">ENT</a></li>
<li><a href="discovery.html">DSC</a></li>
<li><a href="movies.html">Movies</a></li>
</ul>
</nav>
<header>
<h1 id="top">Star Trek Episodes</h1>
</header>
<main>
<h2>About</h2>
<section class="info">
<div class="about">
<h3>What is this website?</h3><span class="num">1x01</span>
<p>If you've ever wanted to watch an episode with a specific character, you know the pain of sifting through Memory Alpha, Wikipedia, or IMBD trying to find all the episodes they were in. No more! Star Trek Episodes provides a simple way to list all episodes with their descriptions, an image, and a link to Memory Alpha, just in case. Now you ask, why is this any different than Wikipedia?</p><br>
<p>All episodes here are tagged by characters, moods, planets, species, and ships. Want an episode featuring Klingons? Look up "Klingon" in the search bar and click it. Now, only episodes with Klingons will be shown. Want an episode with Klingons and Kirk? Select both! Simple as that.</p>
<a href="https://github.com/asd1o1/star-trek-episodes" target="_blank">GitHub</a>
</div>
<div class="about">
<h3>Note!</h3><span class="num">1x02</span>
<p>Note: Not all episodes have not been tagged yet. If you know basic HTML/XML, feel free to fork my repo and add some tags because this will take a while.</p><br>
<p>Current Progress: TOS, TAS, and TNG are done.</p>
<a href="https://github.com/asd1o1/star-trek-episodes" target="_blank">GitHub</a>
</div>
</section>
</main>
<footer>
Made by Alexander Mot
</footer>
</body>
</html>