HTML CSS样式修改练习:打造古诗词网页
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="author" content="Xue Huanqun">
<title>Title</title>
<style type="text/css">
p{
font-family:'kai ti';
font-size: 45px;
font-weight: bold;
color: #0033CC;
text-align: center;
writing-mode: vertical-rl;
<pre><code> display: flex;
justify-content: center;
align-items: center;
line-height: 90px;
}
h1{
font-family: 'kai ti';
font-size: 20px;
border: solid 3px #0033CC;
text-align: center;
width: 300px; /* 修改宽度为300像素 */
height: 100px; /* 设置高度为100像素 */
}
h2{
font-family: 'kai ti';
font-size: 20px;
border: solid 3px yellow;
height: 50px; /* 设置高度为50像素 */
text-decoration: none; /* 取消下划线 */
color: #FF6600; /* 修改字体颜色为橙色 */
}
body{
background-image: url('images/background.png');
background-size: cover;
background-repeat: no-repeat;
}
</style>
</code></pre>
</head>
<body>
<h1>诗文欣赏</h1>
<p>
长恨歌·白居易<br>
汉皇重色思倾国<br>御宇多年求不得<br>杨家有女初长成<br>养在深闺人未识<br>
天生丽质难自弃<br>一朝选在君王侧<br>回眸一笑百媚生<br>六宫粉黛无颜色<br>
</p>
<h2>中华盛世的唐代与白居易的《长恨歌》</h2>
</body>
</html>
原文地址: https://www.cveoy.top/t/topic/gnxW 著作权归作者所有。请勿转载和采集!