-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBootCamp1.html
54 lines (52 loc) · 1.19 KB
/
BootCamp1.html
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>
<!-- Inline-block elements -->
<!DOCTYPE html>
<html>
<head>
<title>My page</title>
<style type="text/css">
.cd{
display:inline;
color: red;
width: 100px;
height: 100px;
border:1px blue;
background-color: yellow;
}
.dec{
display:inline-block;
color: red;
width: 100px;
height: 100px;
border:1px blue;
background-color: orange;
}
.spd{
display:block;
color: red;
width: 100px;
height: 100px;
border:1px blue;
background-color: grey;
}
.list li{
display: inline-block;
}
</style>
</head>
<body>
<div>
<h1>Covid-19</h1>
<p>
Coronavirus disease 2019, also known as the coronavirus or <span class="cd">COVID</span>, is a contagious disease caused by severe acute respiratory syndrome coronavirus 2. The first known case was identified in Wuhan, China, in <span class="dec">December 2019</span>. The disease has since <span class="spd">spread</span> worldwide, leading to an ongoing pandemic.Wikipedia
Symptoms:
Fever, cough, fatigue, shortness of breath, vomiting, loss of taste or smell, some cases asymptomatic
</p>
<ul class="list">
<li>home</li>
<li>about</li>
<li>contact</li>
</ul>
</div>
</body>
</html>