-
Notifications
You must be signed in to change notification settings - Fork 0
/
search.html
55 lines (54 loc) · 1.64 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
<!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" />
<title>Document</title>
<link rel="stylesheet" href="style.css" />
<style>
body {
background-color: #f1e8bc;
}
</style>
</head>
<body>
<section class="search-header">
<img
src="images/main-icon.svg"
alt="main-icon"
class="search-page main-icon"
/>
<div class="search-text">
<h1 class="please">Search</h1>
<h2>Through the 23,000+ varieties</h2>
<div class="search-bar">
<input
type="search"
name=""
id=""
class="search-input"
placeholder="Type a variety name or a characterstic"
/>
<button class="search-button">search</button>
</div>
</div>
<nav class="search-page-index index-nav">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="portal.html">Farmer's Portal</a></li>
<li><a href="#">Search</a></li>
<li><a href="med-rice.html">Medicinal Rice Varieties</a></li>
<li><a href="index.html#contact-form">Contact Us</a></li>
</ul>
</nav>
</section>
<section class="footer" style="margin-top: 5%; background-color: #ede1a4">
<img src="images/main-icon.svg" alt="icon" />
<div>
<a href="#top" style="color: #7d7831">back to top.</a>
<a href="index.html" style="color: #7d7831">back home.</a>
</div>
</section>
</body>
</html>