Introduction
You can read the previous part of the series:
HTML Formatting
- Bold
- Italic
- Subscripts
- Superscripts
- Strong
- Emphasized
- Marked
- Insert
- Delete
HTML Bold tag
- <Html>
- <head>
- <Title>
- </title>
- </head>
- <Body>
- <b>
- <p>Welcome to csharpcorner</p>
- </b>
- </body>
- </html>
Result

HTML Italic Tag
Example
- <Html>
- <Head>
- <Title>
- </title>
- </head>
- <Body>
- <b>
- <p>Welcome to csharpcorner</p>
- </b>
- </body>
- </html>

HTML Subscripts Tag
Example
- <Html>
- <Head>
- <Title>
- </title>
- </head>
- <Body>
- <p>Welcome to <sub>csharpcorner</sub></p>
- </body>
- </html>

HTML Superscripts Tag
Example
- <html> <head>
- <title> </title>
- </head>
- <body>
- <p>Welcome to <sup>csharpcorner</sup>2015</p>
- </body>
- </html>
Result

HTML Strong Tag
- <Html>
- <Head>
- <Title>
- </title>
- </head>
- <body>
- <Strong>
- <p>Welcome to csharpcorner2015</p>
- </strong>
- </body>
- </html>

HTML Emphasized Tag
Example
- <Html>
- <Head>
- <Title>
- </title>
- </head>
- <Body>
- <p>
- <em>
- Welcome to csharpcorner
- </em>
- </p>
- </body>
- </html>
Result

HTML Marked tag
Example
- <Html>
- <Head>
- <Title>
- </title>
- </head>
- <Body>
- <p> Welcome to
- <mark> csharpcorner</mark>
- </p>
- </body>
- </html>

HTML Insert Tag
Example
- <Html>
- <Head>
- <Title>
- </title>
- </head>
- <Body>
- <p> Welcome to<ins> csharpcorner</ins ></p>
- </body>
- </html>

HTML Delete Tag
Example
- <Html>
- <Head>
- <Title>
- </title>
- </head>
- <Body>
- <p> Welcome to<del> csharpcorner</del ></p>
- </body>
- </html>
Result

Summary
In this article, we learned about the Basics of HTML And CSS - Part 2.

Prasanna MuraliPosted May 20, 2016, 11:24 AM
Nice one....
Asfend YarPosted Feb 29, 2016, 2:01 PM
good