<pre> <a> <b> <br> Answer: (c) <b> < b > Bold text example < /b > Try it Yourself »
<pre>
<a>
<b>
<br>
Answer: (c) <b>
<b>Bold text example</b>
Related Posts
Comments (1)
Anonymous
• February 13, 2023
The <b> element has been around since HTML was first introduced in 1993 and remains one of the most commonly used tags today. It’s easy to use – all you have to do is wrap your desired content in opening (<b>) and closing (</b> ) tags like this: <html> <body> <p> <b>This sentence will be bold.</b> </ p> </body> </html>
Comments (1)
<html>
<body>
<p>
<b>This sentence will be bold.</b>
</ p>
</body>
</html>