1.用Visual Studio Code制作
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="./w.css">
</head>
<body>
<h2>
望庐山瀑布
</h2>
<p>
日照香炉生紫烟,
</p>
<p>
遥看瀑布挂前川。
</p>
<p>
飞流直下三千尺,
</p>
<p>
疑是银河落九天。
</p>
</body>
</html>
2.使用链接样式表引入CSS样式
h2{
color: red;
}
p{
color: green;font-size: 14px;
}
3.效果图
4. 文本素材
望庐山瀑布
日照香炉生紫烟,
遥看瀑布挂前川。
飞流直下三千尺,
疑是银河落九天。