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:
- <!DOCTYPE html>
- <html lang="en" dir="ltr">
- <head>
- <link rel="stylesheet" href="css/stylesheet.css">
- <title>Text formatting in Html</title>
- </head>
- <body>
- <p>Here is the <b>Bold tag</b></p>
- <p>Here is the <i>italic tag</i></p>
- <p>Here is the <strong>importent tag</strong></p>
- <p>Here is the <em>emphasized tag</em></p>
- <p>Here is the <mark>mark tag</mark></p>
- <p>Here is the <del>delete tag</del></p>
- <p>Here is the <ins>inserted tag</ins></p>
- <p>Here is the <small>smaller tag</small></p>
- </body>
- </html>
Web view of Html:
Here is the Video: