-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
30 lines (26 loc) · 1010 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dog Breed App Api Assignment</title>
<link rel="stylesheet" href="index.css">
<link href="https://use.fontawesome.com/releases/v5.0.6/css/all.css" rel="stylesheet">
</head>
<body>
<div class="container">
<h1>Happy Doggy API <i class="fa fa-paw" title="paw"></i></h1>
<form>
<label for="dogs">Which one do you want to see?:</label>
<input type="text" id="dog-breed" name="dog-breed" required/>
<input type="submit" id="submit" class="submit" value="Search!">
</form>
<section class="results hidden">
<h2>Look! </h2>
</section>
</div>
<script src="https://code.jquery.com/jquery-3.3.1.js"
integrity="sha256-2Kok7MbOyxpgUVvAk/HJ2jigOSYS2auK4Pfzbm7uH60=" crossorigin="anonymous"></script>
<script src="index.js"></script>
</body>
</html>