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
Comments
Post new comment