![]() |
||||||||||||||||||||||||||
|
+ As many people ask me the same question over and over again that how to make a home page, so I try to make this page that may help. Actually, HTML language is the same idea of other language that It runs by the bunch of codes. But HTML language is the easier language to learn. Here, I try to provide as much as commands that I know so far, and I hope it may help you guys :) + First, you can open any text editors, but I recommend you guys open the Notepad or Writepad to edit the command codes. If you are using Windows 95/98, NT please click on the "START" button down to your left bottom. And then click on "Programs ==> Accessories ==> Notepad or Writepad. Here is the basic form of the HTML language
+ After you finish with all the commands, you can click to "File" and hit "Save As". There will be a new window that asks you three things. The "Save in" = location you want to save, you should remember this directory, because later, you need to open it to see your work. The "File name" is the name that you want to call just simple one word and follow at the end with ".Html" such as mypage.html, defaul.html, index.html. The "Save as type" is much important, and please change it to "Text Document" type. After fill out three required things, you should hit save as. BIG NOTE: Before you start, you must
understand how the HTML code works. It's very simple. When you open
a command you have only two brackets
<Header>
Title: Title is start
with <title> and end with </title> for the title of your homepage!
More in header: In
the header, you can also put the description, keywords, author, and so
on...
Body In the body, you
can set the default of background image, background color, font color,
link, vlink, alink and more... This default have to set that in the body
tag, and you can check out the colors code with
Color Chooser. Keys References For Text Some Text<h2>Some Text</h2> you will see you will see the text smaller! Bold <B> Some Text</B> you will see: Some Text Italic <I>Some Text</I> you will see: Some Text Center <center>Some Text</center> you will see: Underline <U>Some Text</U> you will see: Some Text Font Size <font size=+1>Some Text</font> ( You can increase the number, as big the number is, as big the text you will see.) Font Color <font color="FF0000">Some Text</font> you will see: Some Text Font Face <font face="Comic Sans MS">Some Text</font> you will see: Some Text (With the font face, you have to type exactly the font face name that avialable in your computer. If other people have that type of font, it will display the face of that font. If other people did not have that font face, it will display the default fonts of the browser) Note: You can add more than 2 tags together. More Key Codes ( You can custom your line with the size or how width it is too) Example: <hr size=5 width=75%> you will see: Center Text or Image: <center>Some Thing</center> you will see: Paragraphs: You can use <P> some thing </P> for paragraph and <BR> for changing line List and Bullets: <ul> <li> Some Thing</li> <li> Some Thing Else</li> </ul> and you will see:
Add Link: <a href="http://www.oocities.org">Geocities
Home</a> and you will see: Geocities
Home Changing size: <img src="//oocities.com/terrydoo7/gifs/gc_icon.gif"
alt="Here is the text display when the Image not load yet" border="0"
width="60" height="40"> and you will see: Just change the numbers in the width and height attribute to change the height and width of the image.
+ Table is a special way to custom your web page. Actually it's little confusing, but I think it's easy to understand too. To set the table, it start with command <Table> and end with </Table>. <tr> is for row and <td> is for column. Example: A table with 2 rows and 3 columns. <table> You will see:
+ You can also custom the border of table. Example: A table with 2 rows and 3 columns, and table = 1 <table border=1> You will see:
+ Your can also custom the width size of the table <table border=1> You will see:
+ Your can also custom the background color of table, columns, or rows <table border=1 bgcolor="EEADB8"> You will see:
|
|||||||||||||||||||||||||