Horje
how to make text bold in html Code Example
html bold text
<html>
 <head>
   <title>Bold text</title>
 </head>
 <body>
   <p>Use the strong element to <strong>indicate strongly emphasized</strong> content.</p>
 </body>
</html>
html bold
<!--Emphasized bold text. It's for content that is of greater importance-->
<strong>I'm a content</strong>

<!--Bold text. It's used to draw attention to text without indicating that it's more important-->
<b>I'm another content</b>
bold font html
h1{
font-weight: bold;
}
How to make bold text in html
<!DOCTYPE html>
<html>
   <head>
      <title>HTML text bold</title>
   </head>

   <body>
      <h2>Our Products</h2>
      <p>Developed 10 <strong>Android</strong> apps till now.</p>
   </body>
</html>
how to bold in html
#bold text:
<strong> this is bold </strong>
how to make text bold in html
we can use strong tag
<p> <strong>So this text is looking Bolt because of strong_Tag</strong> </p>




Html

Related
div click outside to hide javascript Code Example div click outside to hide javascript Code Example
html head Code Example html head Code Example
html banner Code Example html banner Code Example
html form tag Code Example html form tag Code Example
adding images to html Code Example adding images to html Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
7