-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (31 loc) · 1.33 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Doogle</title>
<meta name="description" content="Doogle">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<header>
<img class="doogle-icon" src="https://img.icons8.com/ultraviolet/40/000000/dog-park.png" alt="Doogle Icon">
<h1><img class="doogle-logo" src="images/doogle_logo.png" alt="Doogle logo"></h1>
</header>
<form action="" id="inputForm">
<label for="inputText"></label>
<input type="search" id="inputText" name="doogle" placeholder="Insert dog breed here" required/>
<button type="submit" id="fetchBtn">Fetch</button>
</form>
<hr class="hidden">
<div id="" class="loading-div hidden">
<h2 class="breed-name">Your search result will display here</h2>
<img class="loading-image" src="https://woobro.design/thumbnails/30/page-not-found-404-error-vector-illustration-5de1881dd11bc.png" alt="Searching detective and dog">
</div>
<main>
<article>
</article>
</main>
<script src="script.js"></script>
</body>
</html>