forked from NAlexPear/savvy-bookstore-hack-a-thon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
50 lines (42 loc) · 1.64 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Web Store Hackathon! June 2017</title>
<!-- CDN reset -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css">
<link href="https://fonts.googleapis.com/css?family=Merriweather|PT+Sans" rel="stylesheet">
<!-- linked stylesheet below -->
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header>
<h1>Mississippi Books and Media<h1>
<h3>A New River of Knowledge</h3>
<div class="wreckage">
<button class="music" type="button"> Music </button>
<button class="books" type="button"> Books </button>
</div>
</header>
<div class="nav-bar">
</div>
<div class="content">
<form>
<input type="text" name="name" placeholder="Add Name" autofocus required>
<input type="text" name="author" placeholder="Add Author" required>
<input type="text" name="price" placeholder="$"required>
<input type="text" name="photo" placeholder="add photo of bookcover" required>
</form>
</div>
<footer>
<p>Located in St. Louis, Missouri</p>
<p><a href="support@MBM.com">Email Us!</a></p>
<p>314-867-5309</p>
</footer>
<!-- all HTML content goes above this line -->
<!-- connected libraries -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<!-- connected custom scripts -->
<script type="text/javascript" src="js/scripts.js"></script>
</body>
</html>