Categories:




URL.biz - Education


HTML Tutorial !



Basic HTML tags

Rank:
BASIC HTML TAGS

HTML TAG
Attributes and syntax
<HTML> ... </HTML> The first and last tags in a document
<HEAD> ... </HEAD> Document's header information.
<TITLE> ... </TITLE> Title of your document.
<BODY> ... </BODY> Body of document
< !-- ... --> Comment in document
<br/> (or) <br> Line Break.
<h1>... <h6> Headings tags
Attributes: align=[left/center/right]]
Syntax:
<h6 align="center ">Hello world<h6>
<h3>Hello world<h3>
<b>...</b> makes your text bold
<i>...</i> makes your text italic
<u>...</u> makes your text underlined
<p>...</p> paragraph tag.
<div> ..</div> Division tag
Attributes: align=[left/center/right]
<blink>...</blink> Changes the text to blinking.
<center>...</center> Centers everything inside the opening and closing element.
<address> ... </address> Address paragraph
<hr ... </hr> Horizontal Rule
Attributes:
size="xyz" pix
width="xyz"pix
<a>...</a> Create a link to the same or another document
<a>...</a>
Syntax:
Place this code somewhere on the same page or anather page :
<a name="top">
AND type this
<a href="#top"> Jump to the TOP of the page</a>
or
<a href="xyzpage.html#top"> Jump to the xyzpage.html</a>
<a>...</a> Atributes: href="fileName"
Syntax:
<a href="xyzpage.html"> Go to xyzpage.html</a>
<img>...</img> Image tag
Attributes:
src="fileName"
align="left/center/right"
width="xyz" pixels
height="xyz" pixels
border="xy" pix
alt="image description "
<MENU>...</MENU> Menu tag<BR> Attributtes:
type=[disc/circle/square]
<MARQUEE>...</MARQUEE> Scrolling text
<font>...</font> Font
Attributes:
face="fontName1, fontName2..."
size="xy" pix
color="color value"
<table>...</table> Table tag
Attributes:
border="xy" pic
width="xyz / xyz%" xyz pix / xyz %
cellspacing="xy" pix
cellpadding="xy" pix
bgcolor="color value"
background="fileName" of the picture
<tr>...</ tr> Table row
Attributes:
width="xyz" pix
align=[left/center/right]
valign=[top/middle/bottom]
bgcolor=[color value]
<td>...</td> Table column
Attributes:
align=[left/center/right]
valign=[top/middle/bottom]
width="xyz" pix
Top Tutorials:

Basic HTML Tags

Now we are going to start talking about HTML tags...


PHP - String functions
If you’d like to know how to manipulate with strings in PHP...