HOME
> Web design
> Html Codes: How To Write Bold
HTML Codes: How to write bold
With HTML, the vast majority of web pages are scripted. Among the basic features you can create with HTML is, of course, the text of a website. To draw attention to something, you can use HTML code to write text in bold.
What is the HTML code to write bold
HTML offers many ways to change the displayed text. You can make it a different text color, bold, italic, or underlined. Most of these changes don't require many lines of code but just a single marker - so too if you want to write something in bold.- If you want to emphasize a particular line of text or individual words in bold, use the Bold command. "Bold" is the English word for "bold".
- To do this, simply place the text between <b> </b>, so <b>your text</b> so that it is displayed in bold.
- This command can also be combined with other commands, such as <I> for italic, <u> for underlined or <s> for strikethrough.
- <b><l> <u> <s>So this text</b></l></u></s> would be bold, italic, underlined and strikethrough at the same time per HTML code.