HTML Allows various type of Text formatting tags.
Bellow describe this :
<marquee> : This tag is used for indicating any scrolling type content.
<Blink> : This tag is used for indicating any blinking header type content.
<address> : This tag is used for indicating an address. If you write any address type content in your HTML document, then you can use this address tag.
<center>:This tag is used to center-align HTML elements.
<blockquote> : This tag is used for indicating long quotations.
<q> : Th
Example of Above tags -
Contact Me.
Sahidur Rahman Suman
Dhaka - 1207
Bangladesh
Here is a long quatation.
Here comes a short quatation:
HTML Tutorial in Bangla.
Bellow describe this :
<marquee> : This tag is used for indicating any scrolling type content.
<Blink> : This tag is used for indicating any blinking header type content.
<address> : This tag is used for indicating an address. If you write any address type content in your HTML document, then you can use this address tag.
<center>:This tag is used to center-align HTML elements.
<blockquote> : This tag is used for indicating long quotations.
<q> : Th
is
tag is used for indicating short quotations. This tags including content show will including a short quotations. Example of Above tags -
<!--textformat.html-->
<html>
<head>
<title>HTML Text Formatting tags part - one</title>
</head>
<body>
<marquee> This is scroling text style..</marquee>
<blink> BD News.</blink>
<pre><p> This is paragraph
format.</p>
</pre>
<center><p>Contact Me.</p>
<address><p> Sahidur Rahman Suman<br />
Dhaka - 1207<br />
Bangladesh<br />
</p></address>
</center>
<p>Here is a long quatation.<p>
<blockquote>
HTML stands for Hypertext Markup Language, is the common markup language for creating or describing a web pages. It is not a programming language, it is a markup language.HyperText is a system for linking together concepts within and among documents.
</blockquote>
<br />
<p> Here comes a short quatation: <q> This is a short quatation.</q></p>
</body>
</html>
Output will be shown as bellow -
This is paragraph format.
Sahidur Rahman Suman
Dhaka - 1207
Bangladesh
Here is a long quatation.
HTML stands for Hypertext Markup Language, is the common markup language for creating or describing a web pages. It is not a programming language, it is a markup language.HyperText is a system for linking together concepts within and among documents.
Here comes a short quatation:
This is a short quatation.