common tags for texts are
<b> any text </b> to make it bold
<u> any text </u> to make it underlined
<i> any text </i> to make it italic
For HTML Fonts
<p>
<font size="5" face="arial" color="blue">
This paragraph is in Arial, size 5, and in blue text color.
</font>
</p>
<p>
<font size="3" face="verdana" color="blue">
This paragraph is in Arial, size 5, and in blue text color.
</font>
</p>
note that <p> is used for paragraph <font> is used for font, font tag ahas other attributes like face and color.
Tuesday, July 5, 2011
Basics of HTML Coding part 2
HTML Links
<a href="http://assadjamshaid.co.cc">a simple link</a>
HTML Images
<img src="anyfile.jpg" width="150" height="77" />
For line brake use
<br>
or
<br />
For a line use
<hr>
or
<hr />
<a href="http://assadjamshaid.co.cc">a simple link</a>
HTML Images
<img src="anyfile.jpg" width="150" height="77" />
For line brake use
<br>
or
<br />
For a line use
<hr>
or
<hr />
Basics of HTML Coding part 1
OK a basic html coding is like this;
<html>
<head>
<title>anything for title goes here</title>
</head>
<body>
<h1>Any Heading</h1>
<p>Any paragraph.</p>
</body>
</html>
note that every tag starts like <> this and ends like </> this.
<html>
<head>
<title>anything for title goes here</title>
</head>
<body>
<h1>Any Heading</h1>
<p>Any paragraph.</p>
</body>
</html>
note that every tag starts like <> this and ends like </> this.