-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (34 loc) · 1 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
<!-- Note: you may use this starter code, but it is not a requirement -->
<!DOCTYPE html>
<html>
<head>
<title>The Gallery of Horns</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/base.css">
</head>
<body>
<header>
<h1>The Gallery of Horns</h1>
<section>
<select name="animals">
<option value="null">Choose an animal</option>
</select>
</section>
</header>
<main>
<section id="horn-template">
<h2></h2>
<img src="" alt="">
<p></p>
</section>
</main>
<footer>
© 2018 Code Fellows
</footer>
<!-- <script src="https://code.jquery.com/jquery-3.1.1.min.js"></script>
<script type="text/javascript" src="js/app.js"></script> -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script src="js/app.js"></script>
</body>
</html>