-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathday6th_css.html
More file actions
87 lines (84 loc) · 1.95 KB
/
day6th_css.html
File metadata and controls
87 lines (84 loc) · 1.95 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
</head>
<style>
.nav {
background-color: yellow;
list-style-type: none;
text-align: center;
margin: 0;
padding: 0;
}
.nav li {
display: inline;
font-size: 20px;
padding: 20px;
}
.navd {
background-color: yellow;
list-style-type: none;
text-align: center;
margin: 0;
padding: 0;
}
.navd li {
display: inline-block;
font-size: 20px;
/* padding: 20px; */
}
</style>
<body>
<p>
<span
style="
display: inline;
background-color: red;
height: 100px;
width: 100px;
"
>Lorem</span
>
ipsum dolor sit, amet
<span
style="
display: inline-block;
background-color: red;
height: 100px;
width: 100px;
"
>consectetur</span
>
adipisicing elit.
<span
style="
display: block;
background-color: green;
height: 100px;
width: 100px;
"
>Voluptatem</span
>
sequi at officia quo ex repellendus alias consequatur voluptatum eius,
voluptatibus sunt eum numquam, sapiente cum, vero doloribus ipsa esse!
Ducimus!
</p>
<ul class="nav">
<li><a href="#home">Home</a></li>
<li><a href="#about">About Us</a></li>
<li><a href="#clients">Our Clients</a></li>
<li><a href="#contact">Contact Us</a></li>
</ul>
<div>sam</div>
<ul class="navd">
<li><a href="#home">Home</a></li>
<li><a href="#about">About Us</a></li>
<li><a href="#clients">Our Clients</a></li>
<li><a href="#contact">Contact Us</a></li>
</ul>
</body>
</html>