-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPage2.html
More file actions
64 lines (63 loc) · 2.34 KB
/
Page2.html
File metadata and controls
64 lines (63 loc) · 2.34 KB
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
<!DOCTYPE html>
<html>
<head>
<title>BITS bids</title>
<link rel="stylesheet" href="Navbarstyle.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500;600;700;800&display=swap" rel="stylesheet">
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
.search{
display: inline-block;
margin-top: 90px;
width: 550px;
padding-top: 12px;
padding-bottom: 12px;
padding-left: 16px;
padding-right: 16px;
font-size:18px;
margin-left: 310px;
box-shadow: -2px 2px 9px gray;
border: none;
font-family: Georgia, 'Times New Roman', Times, serif;
border-bottom-left-radius: 30px;
border-top-left-radius: 30px;
}
.sbt{
margin-left: 2px;
font-size: 15px;
padding-top: 14px;
padding-bottom: 12px;
padding-left: 10px;
padding-right: 17px;
border: none;
border-bottom-right-radius: 30px;
border-top-right-radius: 30px;
font-family: Montserrat, Georgia, 'Times New Roman', Times, serif;
color: black;
background-color: rgb(118, 194, 229);
}
.sbt:hover{
cursor: pointer;
opacity: 0.85;
}
</style>
</head>
<body class="bod" style="overflow: auto;">
<div class="navbar">
<button class="text" style="display: inline-block; margin-right: 0;">BITS bids</button>
<a href="http://127.0.0.1:5500/Page2.html"><button class="buy" style="margin-left: 500px; ">Buyer</button></a>
<a href="http://127.0.0.1:5500/seller.html"><button class="sell" style="margin-left: 30px; ">Seller</button></a>
<a href="http://127.0.0.1:5500/profile.html"><button class="prof" style="margin-left: 30px; ">Profile</button></a>
<a href="http://127.0.0.1:5500/Firstpage(final).html"><button class="logout" style="margin-left: 30px;">Log Out</button></a>
</div>
<div><input class="search" placeholder="Search BITSbids">
<button class="sbt">Search</button>
</div>
</body>
</html>