-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSearch.html
93 lines (80 loc) · 3.39 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
84
85
86
87
88
89
90
91
92
93
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Search</title>
<!-- Font Awesome CDN Link -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<!-- Custom CSS File -->
<link rel="stylesheet" href="Stlye/style.css"/>
</head>
<body>
<!-- Header Starts -->
<header class="header">
<section class="flex">
<a href="Home.html" class="logo" >Kota Home</a>
<nav class="navbar">
<a href="Home.html">Home</a>
<a href="About.html">About Us</a>
<a href="Menu.html">Menu</a>
<a href="Orders.html">Order</a>
<a href="Contact.html">Contact Us</a>
</nav>
<div class="icons">
<a href="Search.html"><i class="fas fa-search"></i></a>
<a href="Cart.html"><i class="fas fa-shopping-cart"></i><span>(3)</span></a>
<div id="user-btn" class="fas fa-user"></div>
<div id="menu-btn" class="fas fa-bars"></div>
</div>
<div class="profile">
<p class="name">Customer Name</p>
<div class="flex">
<a href="Profile.html" class="btn">Profile</a>
<a href="#" class="delete-btn">Sign Out</a>
</div>
<p class="account"><a href="SignIn.html">Sign In</a> or <a href="SignUp.html">Sign Up</a></p>
</div>
</section>
</header>
<!-- Header Ends -->
<!-- Search Section Starts -->
<section class="search-form">
<form action="" method="post">
<input type="text" class="box" name="search_box" placeholder="search here..." maxlength="100">
<button type="submit" class="fas fa-search" name="search_btn"></button>
</form>
</section>
<section class="products" style="padding-top: 0; min-height: 100vh;"></section>
<!-- Search Section End -->
<!-- Footer Section Starts -->
<footer class="footer">
<section class="grid">
<div class="box">
<img src="Images/email-icon.png" alt="">
<h3>our email</h3>
<a href="[email protected]">[email protected]</a>
</div>
<div class="box">
<img src="Images/clock-icon.png" alt="">
<h3>Trading Hours</h3>
<p>09:00am to 17:00pm</p>
</div>
<div class="box">
<img src="Images/map-icon.png" alt="">
<h3>Address</h3>
<a href="#">Orkney Library</a>
</div>
<div class="box">
<img src="Images/phone-icon.png" alt="">
<h3>our number</h3>
<a href="tel:0123456789">012 345 6789</a>
</div>
</section>
<div class="credit">created by<span>McDonald Lekhoaba </span>| All rights reserved</div>
</footer>
<!-- Footer Section Ends -->
<!-- Custom JS File -->
<script src="JS/script.js"></script>
</body>
</html>