📜  在 html 中更改 h1 的字体大小(1)

📅  最后修改于: 2023-12-03 15:23:09.422000             🧑  作者: Mango

在 HTML 中更改 h1 的字体大小

在 HTML 中,可以使用 CSS 来控制元素的样式。要更改 h1 元素的字体大小,可以使用 CSS 的 font-size 属性。

步骤
  1. 首先,在 HTML 中找到你想要更改字体大小的 h1 元素。例如,下面的代码中的 h1 元素:
<!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>
  1. 在 head 标签中,添加一个 style 标签。在 style 标签中,将 h1 元素的 font-size 属性设置为所需大小。例如,将字体大小设置为 36 像素:
<!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 代码的简洁和易读性。