Why html codes are easy to learnWhy html codes are easy to learn Why Html codes are easy to learn

Why Html codes are easy to learn


If your building a site you need To know HTML codes. HTML stands for Hyper Text Mark-up Language and is the code that nearly all web pages are written in. All you have to do is remember the basic tags as long you remember the basic tags your set. Always remember there is a opening tag and a closing tag. All tags go in side of brackets ex. Opening: <html> ex. Closing: </HTML>. The two example tags appear in almost every html document. Even you can make a site one day if you remember this simple. Remember this and one day you could own a web site too. Later in the document will show you what else you can do with html. Tags can be in caps locks or lower case or a combination of both.

NOTE :THE TAG BELOW(<HTML>)AND THE TAGS THAT APPEAR IN THE ROW WITH IT SHOULD BE IN YOUR DOCUMENT
<HTML>
hypertext markup language

<HTML><HEAD><META ><TITLE>Title of your webpage</TITLE></HEAD><BODY>Webpage contents</BODY></HTML>
EX: Why html codes are easy to learn
Why html codes are easy to learn
Html codes are easy to learn because.......

Html code examples are:

NOTE: THE FOLLOWING TAGS ARE OPTIONAL
TAG NAME CODE EXAMPLE BROWSER VIEW
<b> Bolds Text <b>Hello</b>

Hello

<MARQUEE>
(Internet
Explorer)
scrolling text <MARQUEE bgcolor="#OOOOOO" loop="-1" scrollamount="2" width="100%">Text</MARQUEE> Why Html Codes are easy to learn
<br>  inserts a line break (like pressing enter on a keyboard) <p>Your Information<br>More Information Your Information
More Information
<p> This starts a new paragraph this is very useful for splitting up your text <p>Your Information</p> Hello....

Your Information

<u> UNDERLINES TEXT <u>underlines text</u>
       
       
       
<I>  italicizes text <I> Your Text </I>


 

Your Text

 

<table>
<tr> - start table row
<td> - start table data cell
type your text or image tags here
</td>
<td> - start the second table data cell
type your text or image here
</td>
</tr>
</table>

Font Size:
In HTML the sizes range from 1 (very small) to 7 (very big). To change the size of your font you need to type:

<font size=1>type your text here</font>

You must end your font tag or all text typed afterwards will be that size.

These are the different size fonts

body bgcolor="#000000"

Size 1 text
Size 2 text
Size 3 text
Size 4 text
Size 5 text
Size 6 text
Size 7 text

Bullet Points:
Bullet points are slightly more complicated. In HTML bullet points are called unordered lists or ul.
To start bullet points you need to type <ul>.
You want each bullet point to appear on a new line so you type <li> before it.
text="#FFFFFF When you have finished all your bullet points type </ul>

Ex:<ul>
<li>bullet one
<li>bullet two
<li>bullet three
</ul>

This is what would be displayed on your web page:


Numbered Lists:
Creating a numbered list uses the same principle as creating bullet points except you use ordered list <ol> instead of an unordered lists<ul>.

<ol>
<li>point one
<li>point two
<li>point three
</ol>

This is what would be displayed on your web page:

  1. point one
  2. point two
  3. point three

 

 

 

 

 

 

 

Images:

Once you know where your images are saved you are ready to write the code. The code to insert a picture is made up of three things

<img src = " (this command tells the computer to look for an image)
http://www.neopets.com/mypicture.gif (this tells the computer where to find your picture)
"> closes the tag

When you put the code together it looks like this:
<img src="Where ever You put the picture at or got it from.gif">

Ex:<img src="http://www.neopets.com/mypicture.gif">

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

Most of this information came from
Credits:

Neopets.com
My self
http://www.web-source.net/html_codes_chart.htm