Introduction
You can read the previous part of the series:
HTML Formatting
- Bold
- Italic
- Subscripts
- Superscripts
- Strong
- Emphasized
- Marked
- Insert
- Delete
HTML Bold tag
Bold tags are defined with
<b></b>.
Example- <Html>
- <head>
- <Title>
- </title>
- </head>
- <Body>
- <b>
- <p>Welcome to csharpcorner</p>
- </b>
- </body>
- </html>
Result
HTML Italic Tag
Italic tags are defined with
<i></i>.
Example
- <Html>
- <Head>
- <Title>
- </title>
- </head>
- <Body>
- <b>
- <p>Welcome to csharpcorner</p>
- </b>
- </body>
- </html>
Result
HTML Subscripts Tag
Subscripts tag is defined with
<sub></sub>.
Example
- <Html>
- <Head>
- <Title>
- </title>
- </head>
- <Body>
- <p>Welcome to <sub>csharpcorner</sub></p>
- </body>
- </html>
Result
HTML Superscripts Tag
Superscripts tag is defined with
<sup></sup>.
Example
- <html> <head>
- <title> </title>
- </head>
-
- <body>
- <p>Welcome to <sup>csharpcorner</sup>2015</p>
- </body>
-
- </html>
Result
HTML Strong Tag
Strong tag is defined with
<strong></strong>.
Example- <Html>
- <Head>
- <Title>
- </title>
- </head>
- <body>
- <Strong>
- <p>Welcome to csharpcorner2015</p>
- </strong>
- </body>
- </html>
Result
HTML Emphasized Tag
Emphasized tags are defined with
<em></em>.
Example
- <Html>
-
- <Head>
- <Title>
- </title>
- </head>
- <Body>
- <p>
- <em>
- Welcome to csharpcorner
- </em>
- </p>
- </body>
- </html>
Result
HTML Marked tag
Marked tag is defined with
<Mark></Mark>.
Example
- <Html>
- <Head>
- <Title>
- </title>
- </head>
- <Body>
- <p> Welcome to
- <mark> csharpcorner</mark>
- </p>
- </body>
- </html>
Result
HTML Insert Tag
Insert tag is defined with
<ins></ins>.
Example
- <Html>
- <Head>
- <Title>
- </title>
- </head>
- <Body>
- <p> Welcome to<ins> csharpcorner</ins ></p>
- </body>
- </html>
Result
HTML Delete Tag
Delete tag is defined with
<del></del>.
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.