C# Programming: How to make bold text in HTML | Learn HTML5

Sunday, June 10, 2018

How to make bold text in HTML | Learn HTML5





To create bold text in html we use a bold tag in this way:

code:

<!DOCTYPE html>

<html>

<head>

<title>Bold Text</title>

</head>

<body>

<p>this is normal text</p>



<p><b> this is bold text </b></p>

</body>

</html>

No comments:

Post a Comment