HTML Formatting Tags - III

HTML Formatting Tags
Now here we continue HTML formating Tags.
1. <del> :- <del> tag is used for defining text has been deleting from  a document or we                                          want to delete from our document.
2. <dfn> :- <dfn> tag is used to show clerification and description of  any term which is                                           inside here.
3. <i>      :- <i> tag is used to show any tag in Italic or cursive form.
4. <u>    :- <u> is used for showing tag in underline format.
5. <mark> :- <mark> is used for Highlighting text which we want.

Use this tags and enjoy an output
<html>
 <head>
  <title>Hyper Text Markup Language </title>
 </head>
 <body>
   <p><dfn>HTML </dfn> Hyper Text Markup Language</p>
   <p>Hyper Text <del>Mark up</del> Language.</p>
   <p><i><u>Hyper Text Markup Language</u></i></p>
   <p>Hyper Text <mark>Mark up</mark> Language.</p>
 </body>
<html>

Comments

Popular Posts