forked from ChefJayPeek/petResume
-
Notifications
You must be signed in to change notification settings - Fork 0
/
search.html
83 lines (65 loc) · 2.95 KB
/
search.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
75
76
77
78
79
80
81
82
83
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css">
<link rel="stylesheet" href="style.css"/>
<link rel="stylesheet" href="helper.css"/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<style>
#carousel, #carousel img{
height: 300px;
}
</style>
<title>Search</title>
</head>
<body>
<div w3-include-html="navBar.html"></div>
<main>
<h1 class="#search center-align">Search</h1>
<!-- The form -->
<div class="container">
<div class="row">
<div class="col s12 l4 align-left">
<!-- Search Box-->
<div class="input-field">
<form id="searchForm" autocomplete="off">
<i class="material-icons prefix">search</i>
<input type="text" id="autocomplete-input" class="autocomplete text-right">
<label for="autocomplete-input">Search </label>
</form>
</div>
</div>
<!--the div right below this line must have the following: id="petInfo"-->
<div class="col s12 l8 center-align">
<!-- <!–Lines below will be rendered using javascript–>-->
<!-- <h4 class="breedName">Breed Name</h4>-->
<!-- <img src="https://via.placeholder.com/400" alt="Breed image">-->
<!-- <p class="weight left-align">Weight: </p>-->
<!-- <p class="height left-align">Height: </p>-->
<!-- <p class="desc left-align">Lorem ipsum dolor sit amet consectetur adipisicing elit. Consequuntur esse sapiente sunt id! Sit animi-->
<!-- itaque eum adipisci eveniet non minima molestiae totam at quo? Doloremque maxime aut aspernatur vel!</p>-->
<!-- <!––>-->
<div id="petInfo"></div>
</div>
</div>
</div>
</main>
<div w3-include-html="footer.html"></div>
<!--Compiled and minifed jQuery -->
<script
src="https://code.jquery.com/jquery-3.5.1.min.js"
integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0="
crossorigin="anonymous"></script>
<!-- Compiled and minified JavaScript -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/js/materialize.min.js"></script>
<!--calling javascript files that render style and page content-->
<script src="autoComplete.js"></script>
<script src="script.js"></script>
<script src="headerFooter.js"></script>
<script src="documentReady.js"></script>
<script src="handleUrlParameters.js"></script>
</body>
</html>