Monday, 20 October 2014

Learn HTML online for beginners part 4 insert line comment and pre tag

HTML line


The <hr/> tag create a horizonal line in a HTML Pages.The hr element can be used to separate content.

Example
<p> this is a paragraph</p>
<hr/>
<p> this is a paragraph</p>
<hr/>
<p> this is a paragraph</p>

Preformatted text

with <pre> tag  type where you want to and output look like your input.


HTML Comment


Comments can be inserted into the HTML code ti make. it more readable and understandable.comments are ignored by the browser and not displayed.

<!-- This is a comment -->
Note:- There are a exclamation point after the opening bracket, but not before the closing bracket . comment always show in green color.


Example






HTML text formatting
Tags                 Descriptions
<b>                   bold tag
<big>                 big text
<em>               emphasized text
<i>                     italic
<small>            small text
<strong>           strong text
<sub>               subscript text
<sup>               superscript text
<ins>                inserted text
<del>                deleted text
<pre>                preformatted text

No comments:

Post a Comment