-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
45 lines (44 loc) · 1.85 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Star Wars trivia and spoilers | Home</title>
<link rel="stylesheet" href="main.css" type="text/css">
<link rel="stylesheet" href="responsive.css" type="text/css">
</head>
<body>
<header>
<h6><a href="logIn.html">LOGIN</a></h6>
<h1>STAR WARS TRIVIA</h1>
<nav>
<ul>
<li>Episode 1</li>
<li>Episode 2</li>
<li>Episode 3</li>
<li>Episode 4</li>
<li>Episode 5</li>
<li>Episode 6</li>
<li>Episode 7</li>
<li>Rogue One</li>
<ul>
</nav>
</header>
<section id="main">
<div class="episodes one"><h2><a href="episode1/one.html">The Phantom Menace</a></h2></div>
<div class="episodes two"><h2><a href="episode2/two.html">Attack of the Clones</a></h2></div>
<div class="episodes three"><h2><a href="episode3/three.html">Revenge of the Sith</a></h2></div>
<div class="episodes four"><h2><a href="episode4/four.html">A New Hope</a></h2></div>
<div class="episodes five"><h2><a href="episode5/five.html">The Empire Strikes Back</a></h2></div>
<div class="episodes six"><h2><a href="episode6/six.html">Return of the Jedi</a></h2></div>
<div class="episodes seven"><h2><a href="episode7/seven.html">The Force Awakens</a></h2></div>
<div class="episodes rogueOne"><h2><a href="rogueOne/rogueOne.html">Rogue One</a></h2></div>
</section>
<script
src="https://code.jquery.com/jquery-3.1.1.js"
integrity="sha256-16cdPddA6VdVInumRGo6IbivbERE8p7CQR3HzTBuELA="
crossorigin="anonymous"></script>
<script src="home.js" type="text/javascript" charset="utf-8"></script>
</body>
</html>