-
Notifications
You must be signed in to change notification settings - Fork 190
/
Copy path002.html
61 lines (54 loc) · 1.42 KB
/
002.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
55
56
57
58
59
60
61
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>HTML & CSS-1</title>
<!-- 3.external style -->
<link rel="stylesheet" href="002-style.css">
<!-- 2.internal styles -->
<style>
.internal-style {
padding: 10px;
margin: 10px;
background-color: #DDFFDD;
font-family: monospace;
font-size: 28px;
}
.content-block {
display: block;
color: red;
background-color: #eee;
font-size: 25px;
margin: 10px;
padding: 10px;
}
.content-inline {
display: inline;
color: white;
background-color: #000;
font-size: 28px;
padding: 10px;
}
</style>
</head>
<body>
<!-- 1.inline style -->
<div style="color: white; background: #000; margin: 5px; font-size: 24px; font-family: sans-serif;">
this refers to inline style
</div>
<div class="internal-style">
this refers to internal style sheet
</div>
<div class="external-style">
this refers to external style sheet
</div>
<hr>
<h1>Display Property</h1>
<div class="content-block">
display block property
</div>
<div class="content-inline">
display inline property
</div>
</body>
</html>