📅  最后修改于: 2023-12-03 15:23:09.422000             🧑  作者: Mango
在 HTML 中,可以使用 CSS 来控制元素的样式。要更改 h1 元素的字体大小,可以使用 CSS 的 font-size 属性。
<!DOCTYPE html>
<html>
<head>
<title>My Website</title>
</head>
<body>
<h1>Welcome to My Website</h1>
<p>This is some text on my website.</p>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<title>My Website</title>
<style>
h1 {
font-size: 36px;
}
</style>
</head>
<body>
<h1>Welcome to My Website</h1>
<p>This is some text on my website.</p>
</body>
</html>
通过使用 CSS 的 font-size 属性,可以轻松地更改 h1 元素的字体大小。记得将 CSS 样式添加到 style 标签或外部样式表中,以保持 HTML 代码的简洁和易读性。