-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
74 lines (67 loc) · 3.41 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/css/bulma.min.css">
<link rel="stylesheet" href="./css/style.css" />
<title>The Pet Project</title>
</head>
<header class="level hero is-primary">
<div class="level hero-body">
<h1 class="level-item title is-1">The Pet Project</h1>
<img class="image is-128x128"src="./images/pet-house_blk_wt.png">
</div>
</header>
<body class='has-background-primary'>
<main>
<!--About the site -->
<section class="has-background-success-light about-site box columns is-vcentered">
<div class="column is-6">
<p class="bd-notification is-primary"><p class="is-size-4">Looking for a dog or cat to adopt? You've come to the right place!You can search for either type by using the search box on this page.</p>
</div>
<!--User form input-->
<form class="column is-5 box has-background-success-light">
<h3 class="is-size-3">Find a Pet Available to Adopt</h3>
<div class="block"></div>
<div class="control">
<label class="radio">
<input type="radio" name="answer" id="dog" value="dogs" >
Dog
</label>
<label class="radio">
<input type="radio" name="answer" id="cat" value="cats" >
Cat
</label>
</div>
<div class="block"></div>
<div class="field">
<label class="label">User location</label>
<div class="control">
<input class="input" type="text" placeholder="Enter Zip Code" id="zipcode">
</div>
</div>
<input class="button is-primary is-active" type="submit" value="Search" id="submitbtn">
</form>
</section>
<!-- Display search results-->
<section class="section box has-background-primary" id="search-results">
<p class="title has-text-centered">Search Results</p>
<div class="Results" id="search-results"></div>
</section>
</main>
<!--Footer Section-->
<footer class="footer">
<div class="content has-text-centered">
<p>
<strong>The Pet Project</strong> Made by Jess Varghese, Abeer Tannous and Mac Glenn</a>. The source code is licensed
<a href="http://opensource.org/licenses/mit-license.php">MIT</a>.
<div>Icons made by <a href="https://www.flaticon.com/authors/photo3idea-studio" title="photo3idea_studio">photo3idea_studio</a> from <a href="https://www.flaticon.com/" title="Flaticon">www.flaticon.com</a></div>
</p>
</div>
</footer>
<script src="https://code.jquery.com/jquery-3.4.1.min.js"></script>
<script src="./js/script.js"></script>
</body>
</html>