Quote: (&Ramza) mystic = 50 cent from that lame bullet...
blade2k » articles & tutorials

jump to:
Tutorials » Tech » Computers

First HTML Page


Reading Article
Author: Haldred
Posted on 09/17/2004
print :: back to list
For beginners at HTML

<

lt;html>
This is the opening tag, indicating that this is an HTML Page,
<head> This is the head tag.
<title>Title</title>Title is what you see at the top of the page. In... the toolbar thingy.
</head>End head tag.
<body>Now, your into the page!
<center>(optional) This is if you want to center stuff.
TeXt - Enter what you want on the page.
</center> End center tag.
</body>End body tag.
</html>End html tag.

HTML FORMATTING:
<br> A break.
<b>text</b>Bold
<i>text</i>Italic
<u>Underlined</u>
<p>TeXtTTxtTxt</p>Paragraph.

Advanced tags.
<?php
?> - PHP tag.
#!usr/bin/perl - Beginning of a CGI Page.
<%
%> - ASP Tags.


for tables, refer to my other tutorial on tables.

Enjoy.