Bold Tags are used to give boldness to fonts
If a text in bold it means that is important .
- It is create using <b>.....</b>.
- Span level element.
Especially it is used for creting headings.Bold tags are a type font-weight.
Code:
  <!DOCTYPE html>
  <html>
  <head>
      <title>Bold tag</title>
  </head>
  <body>
      <b>India</b>
      <b>USA</b>
      <b>UK</b>
      <b>Australia</b>
      <b>Africa</b>
  </body>
  </html>


Post a Comment