-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcss01.html
More file actions
33 lines (33 loc) · 832 Bytes
/
Copy pathcss01.html
File metadata and controls
33 lines (33 loc) · 832 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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>css01</title>
</head>
<style>
body {
color:#000000;
background-color:#ffffff;
font-family:arial, verdana, sans-serif;
}
h1{color: blue;}
p.one {
font-family:sans-serif;
background-color: yellow;}
p.two {
font-family:serif;
background-color: gray;
}
p.three {
font-family:monospace;
font-weight:900;
font-size:20px;
}
</style>
<body>
<h1>Font và nền</h1>
<p class="one">Đây là đoạn văn bản sử dụng font sans-serif font, nền màu vàng.</p>
<p class="two">Đây là đoạn văn bản sử dụng font serif, nền màu xám.</p>
<p class="three">Đây là đoạn văn bản sử dụng font monospaced.</p>
</body>
</html>