-
Notifications
You must be signed in to change notification settings - Fork 0
/
serachbycat.php
76 lines (60 loc) · 2.11 KB
/
serachbycat.php
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
<!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://unpkg.com/swiper@7/swiper-bundle.min.css" />
<!-- font awesome cdn link -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<!-- custom css file link -->
<link rel="stylesheet" href="style1.css">
<style>
.row {
border:1px solid black;
background-color:black;
}
.btn3{
margin-top: 1rem;
display:inline-block;
padding:.9rem 1rem;
border-radius: .5rem;
color:#fff;
background:red;
font-size: 1.2rem;
cursor: pointer;
font-weight: 500;
}
</style>
</head>
<body>
<header class="header">
<div class="header-1">
<a href="#" class="logo"> <i class="fas fa-book"></i> bookTown</a>
<!--<form action="" class="search-form">
<input type="search" name="" placeholder="search here..." id="search-box">
<label for="search-box" class="fas fa-search"></label>
</form>-->
<div class="icons">
<div id="search-btn" class="fas fa-search"></div>
<a href="#" class="fas fa-heart"></a>
<a href="mycart.php" class="fas fa-shopping-cart"></a>
<div id="login-btn" class="fas fa-user"></div>
</div>
</div>
<div class="header-2">
<nav class="navbar">
<a href="#home">home</a>
<a href="#featured">shop</a>
<a href="#arrivals">arrivals</a>
<a href="#reviews">reviews</a>
<a href="#blogs">blogs</a>
<a href="uupdate.php">profile</a>
<a href="oderss.php">My orders</a>
</nav>
</div>
</header>
<form action="serach.php" method="post">
<input type="text" name="cat" placeholder="Search category of books">
<input type="submit" name="submit1" value="Search">
</form>