48 lines
1.1 KiB
HTML
48 lines
1.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="zh-CN">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>02_元素选择器</title>
|
|
<style>
|
|
/* 通配选择器 */
|
|
* {}
|
|
|
|
h1 {
|
|
font-size: 40px;
|
|
}
|
|
|
|
h2 {
|
|
color: chocolate;
|
|
}
|
|
|
|
h3 {
|
|
color: green;
|
|
}
|
|
|
|
p {
|
|
color: red;
|
|
}
|
|
|
|
/* 紧凑风格 */
|
|
/* h1 {color: blue;font-size: 40px;} */
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<h1>欢迎你</h1>
|
|
<h2>土味情话</h2>
|
|
<h3>作者:优秀网友们</h3>
|
|
<p>万水千山总是情,爱我一点行不行</p>
|
|
<p>草莓、蓝莓、蔓越莓,今天你想我了没</p>
|
|
<p>我心里给你留了一块地,我的死心塌地!</p>
|
|
<br>
|
|
<h2>反杀土味情话</h2>
|
|
<h3>作者:更优秀的网页们</h3>
|
|
<p>一寸光阴一寸金,劝你死了这条心</p>
|
|
<p>西瓜、南瓜、哈密瓜、把你打成大傻瓜</p>
|
|
<p>我心里只有一块地,我的玛莎拉蒂</p>
|
|
</body>
|
|
|
|
</html> |