" or "" tag to wrap the paragraph text; 2. Set "font-weight:bold|bolder;" to the paragraph tag (for example, p). Just style it, and the font-weight attribute sets the thickness of the text."/>
" or "" tag to wrap the paragraph text; 2. Set "font-weight:bold|bolder;" to the paragraph tag (for example, p). Just style it, and the font-weight attribute sets the thickness of the text.">
Home >
Article > Web Front-end > How to bold a paragraph in html How to bold a paragraph in HTML: 1. Use the "" or "" tag to wrap the paragraph text; 2. Set "font" for the paragraph tag (for example, p) -weight:bold|bolder;" style, the font-weight attribute sets the thickness of the text. The operating environment of this tutorial: Windows 7 system, CSS3&&HTML5 version, Dell G3 computer. htmlParagraph bold 1. Use or tags tag defines bold text. A tag is a phrase tag that defines important text for a sample of a computer program. Rendering: 2. Use the font-weight attribute font-weight Property sets the thickness of the text. Attribute value: bold Defines bold characters. #bolder Defines bolder characters. Example: Rendering: [Recommended tutorial: html video tutorial、css video tutorial】 The above is the detailed content of How to bold a paragraph in html. For more information, please follow other related articles on the PHP Chinese website!How to bold a paragraph in html
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
</head>
<body>
<p>
<b>段落文字加粗</b>
</p>
<p>
<strong>段落文字强调,加粗</strong>
</p>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<style>
p.normal {
font-weight: normal;
}
p.bold {
font-weight: bold;
}
p.bolder {
font-weight: bolder;
}
</style>
</head>
<body>
<p class="normal">测试文本段落。</p>
<p class="bold">测试文本段落。</p>
<p class="bolder">测试文本段落。</p>
</body>
</html>