-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathamazon.html
More file actions
54 lines (52 loc) · 777 Bytes
/
Copy pathamazon.html
File metadata and controls
54 lines (52 loc) · 777 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title></title>
<style >
*{}
body {
padding: 0;
margin: 0;
font-color: white;
}
#logo{
color: #f08804;
font-size: 25px;
}
#navbar {
background-color: black;
color: white;
height: 60px;
display: flex;
justify-content: space-around;
align-items: center;
}
a {
color: white;
text-decoration: none;
text-align: center;
margin: 9px;
}
button {
background-color: #f08804;
color: white;
border: 2px solid white;
}
#con ,#box {
margin-right: 200px;
}
</style>
</head>
<body>
<div id="navbar">
<a href="https://amazon.in" id="logo">amazon.in</a>
<a href="Account">Account</a>
<a href="Cart">My Cart</a>
<a href="Contact" id="con">Contact Us</a>
<div>
<input placeholder="Search Amazon.in" id="box">
<button >Search</button>
</div>
</div>
</body>
</html>