-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
55 lines (49 loc) · 1.72 KB
/
Copy pathindex.html
File metadata and controls
55 lines (49 loc) · 1.72 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="keywords" content="Star, Wars">
<meta name="author" content="Mehrab">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Star Wars</title>
<link type="text/css" rel="stylesheet" href="style.css">
</head>
<body>
<header>
<div id="header" class="container">
<div id="branding">
<h1>Star Wars</h1>
</div>
<nav id="links">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="#">About</a></li>
</ul>
</nav>
</div>
</header>
<section id="showcase">
<div class="container">
<h1>Your number one place for Star Wars Fanfiction</h1>
</div>
</section>
<section id="submission">
<div class="container">
<h1>Submit your fanfiction!</h1>
<input type="text" placeholder="Enter Title" id="title">
<button id="submit">Submit</button>
</div>
</section>
<section id="stories">
<button id="clear" onclick='clearAll()'>Clear All</button><br>
</section>
<footer>
<p>PizzaStack Design, Copyright © 2019</p>
</footer>
<script src="main.js"></script>
<script src="ajax.js"></script>
<script src="events.js"></script>
<script src="functional.js"></script>
</body>
</html>