|
HTML
is a basic and primary language of web. Anyone can
create HTML code through front page or dream weaver
software. But all webmaster or web designers should
know about the HTML code and programme to make a
correctly programmed site and also optimized it.
Here is some basic Tags and tips of HTML…..
HTML Codes are ….
<html></html> : All instruction or code of HTML
programme placed within the Tags.
<!—text here–>: Used for writing any comments within
the html programme without disturbing the any
visibility of your web page.
<title></title> : Used for displaying Title text of
your web.
<p></p>: Text paragraph is placed within the tags.
<hr>: Its create horizontal line
<br>: Used for line break.
<h1></h1>, <h2></h2>, etc.: These are heading tags
<b></b>: Used to make text bold.
<i></i>: Used to make text italic.
<h1 align=”center”></h1>: Used to make the Heading
in Center align
<h1 align=”left”></h1>: Used to make the Heading in
Left align
<h1 align=”right”></h1>: Used to make the Heading in
Right align
<body bgcolor=”color value”>: Used for denoting the
back ground color of your site.
<table id="table name" width="1000" height="800"
border="0" cellpadding="0" cellspacing="0"></table>
: All row, column tags and all other data of Table
of the web page placed within the tags.
<font face="verdona" size="5" color="brown"></font>
: used for denoting font size and color of some
particular paragraph.
<a href=”webpage here”>what the link says</a>: Used
to create a hyperlinked some text by some web.
<a href=”webpage here”> <img border=”0? src=”buttonimage.gif”
width=”57? height=”29?></a>: Used to create
hyperlinked some images or button images by some
webpage.
<img src="images/index_11.jpg" width="151"
height="33" > : Used to display Images on the web
page. |