在分块中添加相应的内容,给出html,css代码
时间: 2024-02-17 15:01:14 浏览: 75
好的,以下是一个简单的HTML和CSS代码,用于创建一个具有背景颜色和居中文本对齐的标题和段落:
HTML代码:
```
<div class="container">
<h1>Welcome to my website!</h1>
<p>Here you can find all kinds of information and resources on various topics.</p>
</div>
```
CSS代码:
```
.container {
background-color: #f2f2f2;
text-align: center;
}
h1 {
font-size: 36px;
margin: 20px 0;
}
p {
font-size: 18px;
margin: 20px 0;
}
```
在上面的代码中,我们使用了一个div容器来包含标题和段落。我们为容器设置了背景颜色,并使用text-align属性将文本设置为居中对齐。我们还对标题和段落应用了一些基本样式,例如字体大小和外边距。
阅读全文