html中用CSS代码
时间: 2023-11-14 21:07:30 浏览: 97
html和css代码
可以在HTML文件中使用<style>标签来嵌入CSS代码,也可以将CSS代码写在外部的CSS文件中,然后在HTML文件中使用<link>标签引入。
例如,在HTML文件中嵌入CSS代码:
```
<!DOCTYPE html>
<html>
<head>
<title>My Website</title>
<style>
body {
background-color: #f2f2f2;
font-family: Arial, sans-serif;
}
h1 {
color: #333;
text-align: center;
}
p {
font-size: 18px;
line-height: 1.5;
margin-bottom: 20px;
}
</style>
</head>
<body>
<h1>Welcome to My Website</h1>
<p>This is a paragraph of text.</p>
<p>This is another paragraph of text.</p>
</body>
</html>
```
阅读全文