-=sag33r=- Admin
POST : 1461 RANK : 15104 REPUTATION : 27 JOIN DATE : 2011-03-17 AGE : 42 LOCATION : jkghg
| Subject: Html tags to create a basic page Wed Sep 07, 2011 3:55 pm | |
| Here are the most basic html tags that you should get used to as a beginner in html coding. I am writing it down to look like a full html page with explanation
<html> <head> <!-- name of ur html page --> <title>Dodgerturf Html Tutorial</title>
<!-- background,link,text,visited link color --> <body bgcolor="black" link="blue" text="white" vlink="orange">
<!-- alignment of content --> <p align="center">
<!-- normal text and next --> Normal Text<br>
<!-- bold text --> <b>Bold text</b><br>
<!-- underlined text --> <u>Underlined text</u><br>
<!-- italic text --> <i>Italic text</i><br>
<!-- text determining font character --> <font color="lime" size="3">Coloured text</font><br/>
<!-- big text --> <big>Big Text</big><br>
<!-- small text --> <small>Small Text</small><br>
<!-- blinking text --> <blink>Blinking Text</blink><br/>
<!-- A link with a display name --> <a href="http://destination_of_link.com">Display Name of Link</a><br>
<!-- a picture with a link --> <a href="http://destination_of_link.com"><img src="http://location_of_pic.jpg" alt="Link with Image"/></a><br/>
<!-- A picture --> <img src="A normal Picture" alt="Name of Pic"/><br/>
<!-- header with size,h1,h2,h3etc --> <h1>Header defining Size</h1>
<!-- divider line with colour --> <hr color="lime"/> <br>
<!-- Visit [You must be registered and logged in to see this link.] --> <br> </p> </body> </html>
The <!-- Explanation --> part of the page dont have any value and are just for the sake of explanation.u can delete the <!-- --> parts or keep them according to ur will as these dont hold any effects.
Happy Coding | |
|
admin Admin
POST : 1835 RANK : 17235 REPUTATION : 25 JOIN DATE : 2011-03-16 AGE : 41 LOCATION : RIYADH
| Subject: Re: Html tags to create a basic page Sat Sep 10, 2011 10:31 am | |
| :oops: :oops: :oops: :oops: :oops: | |
|