Skip to main content

Formatting

Formatting | HTML: Formatting means adding special format to normal text.

List of Formats:

  1. bold text
  2. italic text
  3. importent text
  4. emphasized text
  5. marked text
  6. deleted text
  7. inserted text
  8. smaller text

Here is the Formatting.html:

  1. <!DOCTYPE html>
  2. <html lang="en" dir="ltr">
  3.   <head>
  4.     <link rel="stylesheet" href="css/stylesheet.css">
  5.     <title>Text formatting in Html</title>
  6.   </head>
  7.   <body>
  8.     <p>Here is the <b>Bold tag</b></p>
  9.     <p>Here is the <i>italic tag</i></p>
  10.     <p>Here is the <strong>importent tag</strong></p>
  11.     <p>Here is the <em>emphasized tag</em></p>
  12.     <p>Here is the <mark>mark tag</mark></p>
  13.     <p>Here is the <del>delete tag</del></p>
  14.     <p>Here is the <ins>inserted tag</ins></p>
  15.     <p>Here is the <small>smaller tag</small></p>
  16.   </body>
  17. </html>

Web view of Html:




Here is the Video: