Starting HTML

Creator:
nate2

Now HTML isn't really that hard. Now let's make you your own webpage. First of all if your using windows open notepad if linux then open up text editor. Now type in:

<HTML> </HTML>

this starts your webpage. Now add inbetween those tags

<HEAD> </HEAD>

Now caps are not required. The HEAD is the top so whatever is in there is on top and the body has the bottom. Now under the head add this still inbetween the HTML tags:

<BODY> </BODY>

So far this is what is in the document:

<HTML> <HEAD> </HEAD> <BODY> </BODY> </HTML>

Now you can just add what you want inbetweenthe Head and Body tags but everything stays inbetween the HTML tags.

HTML Cheatsheet:
Bold - Type: <b>Text</b> appears Text
Italic - Type: <i>Text</i> appears Text
Underline - Type: <u>Text</u> appears Text
Strike - Type: <s>Text</s> appears Text
Link - Type: <a href="URL">Text</a> appears Text
Image - Type: <img>Image URL</img>/<img src="Image URL"> appears :smile:
Horizontal Rule - Type: <hr> appears


Thats most of the basics for you. Have fun.

Description:
This will get you started on HTML and on the right foot quickly.

Comments

Post new comment

The content of this field is kept private and will not be shown publicly.
  • Web page addresses and e-mail addresses turn into links automatically.
  • Allowed HTML tags: <a> <em> <strong> <cite> <code> <ul> <ol> <li> <dl> <dt> <dd>
  • Lines and paragraphs break automatically.

More information about formatting options