|
||
| HTML COURSE FOR EASY LEARNING | ||
| Homepage | lesson-2 | lesson-3 | lesson-4 | lesson-5 | lesson-6 | lesson-7 | lesson-8 | lesson-9 | lesson-10 |
LESSON-4FORMATTING WEBPAGE
| < font size=+5> Rama and Hanuman </font> | Rama and Hanuman |
| < font size=+4> Rama and Hanuman </font> | Rama and Hanuman |
| < font size=+3> Rama and Hanuman </font> | Rama and Hanuman |
| < font size=+2> Rama and Hanuman </font> | Rama and Hanuman |
| < font size=+1> Rama and Hanuman </font> | Rama and Hanuman |
Font FACE:
|
| <font size=+2 face="Arial">Arial</font> | Arial |
| <font size=+2 face="Verdana">Verdana</font> | Verdana |
| <font size=+2 face="Impact">Impact</font> | Impact |
| <font size=+2 face="Comic Sans MS">Comic Sans MS</font> | Comic Sans MS |
| <font size=+2 face="Helvetica">Helvetica</font> | Helvetica |
| <font color="Blue">The sky is blue</font> | The sky is blue |
| <font size=+3 face="Impact" color="RED">Hi Rama how are you!</font> | Hi Rama how are you! |
| <font color="green">The earth is green </font> | The earth is green |
| color names | red | green | brown | yellow | orange | skyblue | darkgreen | magenta | indigo | violet | silver | pink |
| color digits | 000000 | 00ff00 | abc000 | ff00ff | ffff00 | fff000 | ff0000 | abcdef | 0f0f0f | 0000ff | 00ffff | 0fffff |
| The html tag | How it renders |
|---|---|
| <p>this tag is for a paragraph</p> | This tag is for a paragraph |
| this is <br> (line break) | this is (line break) |
| <hr> (horizontal rule) | (horizontal rule) |
<pre>t h i s text is preformatted </pre> | t h i s text is preformatted |
| <em>This text is emphasized</em> | This text is emphasized |
| <strong>This text is strong</strong> | This text is strong |
| <code>This is some computer code</code> | this is comupter code |
| <b>This text is bold</b> | This text is bold |
| <i>This text is italic</i> | This text is italic |
| <!--this is comment tag the matter here will be ignored--> | |
| <center>This text is centered</center> | |
| <div align="right">This text is right aligned</div> | This text is right aligned |
| This is a hyperlink to page1 <a href="page1.html">page1</a> | This is a hyperlink to page1 page1 |
| This is a link to yahoo.com <a href="http://www.yahoo.com">yahoo</a> | This is a link tcounted by html this is only for your convenience to rememeber some topics while writing codes --> to test this you add a comment with the combination of above tags and you may not get anything in your webpage. |
end of LESSON-4 |