网页设计在index.html中输入1个最大号的标题标签和4个段落标签,段落标签中分别有以下内容:《静夜思》、床前明月光、疑是地上霜、举头望明月、低头思故乡。并把标题和诗句实现居中显示(9分)。 6. 把这首诗《静夜思》的内容 床前明月光、疑是地上霜、举头望明月、低头思故乡文字大小修改为30px(3分)。
时间: 2023-07-10 18:08:46 浏览: 89
HTML标签大全.docx
下面是代码实现:
```html
<!DOCTYPE html>
<html>
<head>
<title>《静夜思》</title>
<style>
body {
text-align: center;
}
h1 {
font-size: 36px;
}
p {
font-size: 20px;
}
.poem {
margin-top: 50px;
margin-bottom: 50px;
}
</style>
</head>
<body>
<h1>《静夜思》</h1>
<div class="poem">
<p>床前明月光,</p>
<p>疑是地上霜。</p>
<p>举头望明月,</p>
<p>低头思故乡。</p>
</div>
</body>
</html>
```
其中,`text-align: center;`可以使整个页面居中对齐。`margin-top`和`margin-bottom`可以调整诗句与标题之间以及诗句与页面底部之间的间距。`font-size`可以设置字体大小。
阅读全文