5/27/2009 08:44:00 AM
Different tags call different functions. A full list of html tags and their functions is provided here.
So to begin with, our page looks like this:
Hint, You can use capital OR lower case letters within your tags but DO NOT mix capitals with lower case.
The Head
Directly under the comes the The head is for the browsers use and shows such things as the page title, the designers name, keywords and a detailed description of what can be found on the page. The contents of the head are not visible to visitors. The tags within the head are called "Meta Tags" which if you haven't already heard mention of them, you will certainly hear a lot of as your internet experience grows. *smiles*
(If you would like to see this pages Meta Tags, select "view" at the top of your browser and click on"source".)
The Body
Now we need to put in an opening statement, something like Welcome to My Website. This is done byadding a heading command or what I prefer to use FONT SIZE.
In this example we will use the font size 5 and we will center the welcome message.
Welcome to My Webpage
Start of new paragraph.
Next we will add some text and to begin we need to tell the browser it is the start of a new paragraph and where to place the text. This is the html to do that:
Type in text here, blah blah blah. We are making a webpage.
is for new paragraph.
tag
Now let's place an image in the center of your page to finish it off.
tag.
"http://www.hypergurl.com/images/hypermouse.gif" width="100" height=150" border="0" alt ="Hypergurl Webhosting. Unrivalled Support.">
new paragraph.
Our finished page in html would now look like this:
Type in text here, blah blah blah
Here is what it would look like when viewed. Click Here
5/12/2009 01:35:00 AM
A guide to learning html for beginners.
HTML are initials that stand for Hyper Text Markup Language
- Hyper is the opposite of linear. It used to be that computer programs had to move in a linear fashion. This before this, this before this, and so on.HTML does not hold to that pattern and allows the person viewing theWorld Wide Web page to go anywhere, any time they want.
- Text is what you will use. English letters, just like you use everyday..
- Markup is what you will do. You will write in plain English and then mark up what you wrote.
- Language. Some may argue that technically html is a code, but you write html in plain, everyday English language.
HTML is the code behind your webpage and is what your browser looks for to display a webpage, the way the webdesigner intended it to look, and is a series of tags
Keep this in mind: HTML documents must be text only.
When you save a HTML document, you must save only the text, nothing else. HTML browsers can only read text. Look at your keyboard. See the letters and numbers and little signs like % and @ and *? There are 128 in all (read upper- and lowercase letters as two). That's text. That's what the browser reads. It simply doesn't understand anything else.
Remember that if you are using Notepad, Wordpad, or Simple Text, the document will be saved as text with no extra prompting. Just chooseSAVE.
If you are going to start learning to write HTML, it is a good idea to learn to look at other authors' HTMLpages. The actual html potion of the page behind the pretty page you see in front of you now.
Looking at another's html code helps you learn how things are done and you can copy the style of pages that you like. Please do not just steal and copy the pages, but no one will be upset if you make the style in much the same way. For example, if you were going to build a house, you would look around to see what styles you like before deciding on your own design. Same thing here, look around the web and see what styles you like and apply them to your own ideas.
Here's how you look at an HTML document (known as the "source code")
- When you find a page you like, click on VIEW at the top of the screen.
- Choose SOURCE from the menu.
- The HTML document will appear on the screen.
Try it with this page. Click on VIEW and then choose the SOURCE.
It will look like mumbo jumbo right now, but soon it'll be readable and you'll be able to find exactly how a certain HTML presentation was performed.
What are HTML Tags?
HTML works in a very simple, very logical, format. It reads like you do, top to bottom, left to right. HTMLis written with TEXT. What you use to set certain sections apart as bigger text, smaller text, bold text, underlined text, is a series of tags.
Think of tags as commands. For example if you want a line of text to be bold. You will put a tag at the exact point you want the bold lettering to start
All tags that are opened must correspondingly be closed, just as if you are writing a quoted statement with those "inverted commas". A tag is closed this way therefore we open a new tag
Different tags call different functions. A full list of html tags and their functions is provided here.