EN
HTML - bold text
0 points
In this article, we would like to show how to bold text in HTML.
Quick solution:
xxxxxxxxxx
1
<strong>bold text</strong>
or
xxxxxxxxxx
1
<b>bold text</b>
In this section, we present how to make the bold text with <strong>
tag.
Practical example:
xxxxxxxxxx
1
2
<html>
3
<head>
4
<style>
5
/* style properties here */
6
</style>
7
</head>
8
<body>
9
<p>Some text with <strong>bold</strong> element.</p>
10
</body>
11
</html>
Note:
You can also use the CSS solution from the following article: CSS - bold text.