39 lines
1.0 KiB
HTML
39 lines
1.0 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>03_类选择器</title>
|
|
<style>
|
|
#earthy {
|
|
color: chocolate;
|
|
}
|
|
|
|
#turn-earthy {
|
|
color: green;
|
|
}
|
|
|
|
.turn {
|
|
font-size: 40px;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<h1>欢迎你</h1>
|
|
<h2 id="earthy">土味情话</h2>
|
|
<h3>作者:优秀网友们</h3>
|
|
<p>万水千山总是情,爱我一点行不行</p>
|
|
<p>草莓、蓝莓、蔓越莓,今天你想我了没</p>
|
|
<p>我心里给你留了一块地,我的死心塌地!</p>
|
|
<span>哈哈</span>
|
|
<br>
|
|
<h2 id="turn-earthy" class="turn">反杀土味情话</h2>
|
|
<h3>作者:更优秀的网页们</h3>
|
|
<p>请你对我说:一寸光阴一寸金,劝你死了这条心</p>
|
|
<p>请你对我说:西瓜、南瓜、哈密瓜、把你打成大傻瓜</p>
|
|
<p>请你对我说:我心里只有一块地,我的玛莎拉蒂</p>
|
|
</body>
|
|
|
|
</html> |