HTML 标题标签加粗字体:两种简单方法
可以使用 CSS 样式来给标题标签加粗字体。具体的方法如下:
-
在<head>标签中添加<style>标签,定义标题样式。
<head> <style> h1 { font-weight: bold; } </style> </head> -
在<h1>标签中添加 class 属性,指定样式名称。
<h1 class='title'>这是标题</h1> -
在样式中添加对应的样式名称。
<head> <style> .title { font-weight: bold; } </style> </head>
原文地址: https://www.cveoy.top/t/topic/mU5D 著作权归作者所有。请勿转载和采集!