-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCSS.html
25 lines (24 loc) · 914 Bytes
/
CSS.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
<!DOCTYPE html>
<html lang="en">
<head>
<style type="text/css">
h1 {color: red;}
p {color: blue;}
body {background-color: aquamarine;}
</style>
<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>CSS</title>
</head>
<body>
<h1>红色标题</h1>
<p>蓝色段落</p>
<p style="color: bisque;margin-left: 20px;margin-top: 100px;">内联样式</p>
<p style="background-color: blue; color: white;">更改段落背景色</p>
<h1 style="font-family: 'Courier New', Courier, monospace;">更改标题字体</h1>
<p style="font-family: Arial, Helvetica, sans-serif; color: deeppink; font-size: large;">更改段落字体</p>
<h1 style="text-align:center">文本对齐方式</h1>
<a href="index.html">返回首页</a>
</body>
</html>