|
HTML GUIDE:
Maybe other websites have guides on this but we'll try a different approach(I hope).
Html is a language that has only some important "words" (Like what? Computer 010101???) No, don't worry. I haven't even gotten to the point.
I'll start by going astray on the topic...
Let's do this interactively. Open some program that you can type words in like Notepad(The best approach) or just open a new page in Freewebs and save it as index.html. Just copy this and paste it into your document:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
Don't even worry what the above code means. It's just required in everything. (If you really want to know...go to www.w3.org. I don't know if it helps you or not but oh, well)
Let's say my website's name is Lilakyria.
Then after the code above, type
<title>Lilakyria</title>
This code is what appears on the top of your browser. For us, it's "Welcome to Mystical Dragon." The <title> things are just indicators to the browser that you have a title going there. Like a book's title.
After that code typeYou've ended the head section.
Save this document as index.html
Don't close the program! Now, it's on to the main part of the code, the body.
Type
<body> After </head>
Now write anything you want.
Wait! But if I press enter in the code, the words don't go onto the next line! So you'll need the magical code<br/>
That's it.
After you've written all you've needed, type |