-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPractice Set 4.html
More file actions
69 lines (64 loc) · 1.53 KB
/
Copy pathPractice Set 4.html
File metadata and controls
69 lines (64 loc) · 1.53 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
65
66
67
68
69
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CSS Level 2</title>
<link rel="StyleSheet" href="style.css">
</head>
<body>
<header>
<div id="navbar">
<a id="logo" href="#">amazon.in</a>
<a href="#">Account</a>
<a href="#">My Cart</a>
<a href="#">Contact Us</a>
<input placeholder="search Amazon.in">
<button>search</button>
</div>
</header>
<div id="content">
<div class="contentBox" style="background-color: rgba(255,0,0,0.5);">Buy your favourite Soap</div>
<div class="contentBox" style="background-color: rgba(0,255,0,0.5);">Buy your fav gadgets</div>
<div class="contentBox" style="background-color: rgba(0,0,255,0.5);">Rent your fav movies</div>
</div>
<footer>
Made with ♥ by Amazon <br>
© 1996-2003,Amazon.com,Inc. or its affiliates
</footer> <!-- symbol for copyright*/ -->
</body>
</html>
*{
padding: 0;
margin: 0;
color: white;
}
#navbar{
height: 60px;
background-color: #0f1111;
}
button{
background-color: #f08804;
}
#logo{
color: #f08804;
font-size: 25px;
}
a{
margin-right: 200px;
text-decoration: none;
}
.contentBox{
height: 100px;
width: 100px;
border: 2px solid black;
display: inline-block;
}
#content{
height: 720px;
}
footer{
background-color: #0f1111;
color: white;
text-align: center;
}