How to set bold font in html text

巴扎黑
Release: 2017-06-09 11:52:08
Original
67488 people have browsed it

1. Use html bold tag

Use b tag or strong tag to bold the text.

1. The corresponding syntax is as follows:

2. Application case

1), html case complete code (can be copied for testing):

<!DOCTYPE html> 
<html xmlns="http://www.w3.org/1999/xhtml"> 
<head> 
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 
<title>粗体实现 DIVCSS5案例</title> 
</head> 
<body> 
我是正常字体<br /> 
<b>我被b粗体</b><br /> 
<strong>我被strong粗体</strong> 
</body> 
</html>
Copy after login

2), html bold screenshot:

How to set bold font in html text

html bold tag to make text bold

The above is the method of using two kinds of bold tags to make HTML text bold and bold. I hope everyone can master and apply it flexibly.

2. Use CSS styles to achieve bold text display - TOP

In the div+css layout, it is common to use CSS styles to achieve bold text fonts. You only need to set a bold font for the object. The style attribute can realize text boldness, also known as css text boldness.

1, css bold style basics

1), words and introduction

font-weight, the value can be from 100 to 900, and bold, the most commonly used font The value of -weight is bold, which is also compatible with all browsers.

2), css bold syntax:

div{font-weight:bold}
Copy after login

This will make the text fonts in all div objects bold

2, bold css case

1), Bold case HTML source code (div+css layout case) (you can copy, use and test)

<!DOCTYPE html> 
<html xmlns="http://www.w3.org/1999/xhtml"> 
<head> 
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 
<title>粗体实现 DIVCSS5案例</title> 
<style> 
.bold{ font-weight:bold} 
</style> 
</head> 
<body> 
<div>我是正常字体</div> 
<div class="bold">我被font-weight粗体</div> 
</body> 
</html>
Copy after login

2), Bold case screenshot

How to set bold font in html text

3. Summary of font text bold

How to set bold font in html text

Label bold and CSS style bold

Style bold and html label bold Bold method

Here we introduce HTML tags and CSS styles to implement bold text in two ways. You can choose the bold style method according to your needs in actual use.

The above is the detailed content of How to set bold font in html text. For more information, please follow other related articles on the PHP Chinese website!

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!