-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathExercise.html
More file actions
51 lines (36 loc) · 869 Bytes
/
Copy pathExercise.html
File metadata and controls
51 lines (36 loc) · 869 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
<style>
h1{
background-color:black;
color:yellow;
padding:30px;
text-align:center;
}
div{
background-color:grey;
color:black;
padding:20px;
border-width:10px;
border-color:black;
border-style:solid;
margin:10px;
}
</style>
<h1>Error Makes Clever</h1>
<div>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Voluptate obcaecati, dolorum qui sed asperiores nulla non? Vitae quo dolorem laudantium quidem nesciunt, maiores iusto molestias voluptas at, blanditiis omnis ullam!
</div>
<style>
li{
background-color:black;
color:white;
display:inline;
padding:10px;
margin:8px;
}
</style>
<ul>
<li>Home</li>
<li>About </li>
<li>Contact Us</li>
</ul>