Good evening!To all my friends,
My self Deepak Sharma 26, today I am gonna discuss about what I have learned today in my class.
So, today I have learned about
some tags of formats in HTML.
As you know there is need of some text designing in the website to make it more attractive or understandable.
Let's see what the code is,
<html>
<head>
<title>All text formats</title>
</head>
<body>
Element name Description<br>
<b> This is physical tag, which is used to bold the text written between it.</b>
<br>
<strong> This is a logical tag, which is tells the browser that the text is important.</strong>
<br>
<i> This is physical tag which is used to make text italic.</i>
<br>
<em> This is a logical tag which is used to display content in italic.</em>
<br>
<mark> This tag is used to highlight a text.</mark>
<br>
<u> This tag is used to underline text written between it.</u>
<br>
<tt> This tag is used to appear a text in teletype. (not supported in HTML5)</tt>
<br>
<strike> This tag is used to draw a strikethrough on a section of text. (Not supported in HTML5)</strike>
<br>
<sup> It display the content slightly above the normal line.</sup>
<br>
<sub> It display the content slightly below the normal line.</sub>
<br>
<del> This tag is used to display the deleted content.</del>
<br>
<ins> This tag display the content which is added</ins>
<br>
<big> This tag is used to increase the font size by one conventional unit.</big>
<br>
<small> This tag is used to decrease the font size by one unit from base font size.</small>
</body>
</html>
The description of all tags are given. Checkout the output of code of yourself.
No comments:
Post a Comment