-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (33 loc) · 1.19 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dogs</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://use.typekit.net/jdq7cig.css">
<meta name=”theme-color” content=”#29263e>
</head>
<body>
<main id="main">
<h1>The Online Dogtionary</h1>
<form onsubmit="doggify(); return false;">
<select class="select" id="breeds">
<option value="random">random</option>
</select>
<input type="submit" value="get dog!">
</form>
<div class="wrapper">
<img id="dog-image">
</div>
</main>
<footer class="footer">
<p>This project was made by <a href="https://vanajmoorthy.com"
target="_blank">Vanaj
Moorthy</a> using the <a href="https://dog.ceo/dog-api/" target="_blank">dog.ceo API.</a> <br/> <br/> The source can be found <a href="https://github.com/vanajmoorthy/dogs">here</a>.
</p>
</footer>
<script src=" populate-select.js"></script>
<script src="fetch-dog.js"></script>
</body>
</html>