|
|

Beginners guide: HTML
Html is a very simple coding language and its easy to
understand. All you need to make
a home page is "notepad" which is a standard program on all
windows.
1. Open notepad and write following code:
<!DOCTYPE html PUBLIC
"-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title></title>
</head>
<body>
</body>
</html>
2. Then write "index" between the "title" tags.
3. Now we have give the page a name, and your code
should look like this:
<!DOCTYPE html PUBLIC
"-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>index</title>
</head>
<body>
</body>
</html>
4. Between the "body" tags we can write text and
insert images, now lets start to write a
simpel text with a header:
<!DOCTYPE html PUBLIC
"-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>index</title>
</head>
<body>
<h1>Header</h1>
<p>here you can write
text</p>
</body>
</html>
5. Congratulations, you have made your first home page! Not yet...
First we have to save your home page. Save it with the name:"index.html"
Then if you find the file on your computer it will be a nice sheet of paper with the logo
of your standard internet reader. Double klick on it, and then your page will look like
this
6. Now you have a simpel home page, how to insert links and images will come soon.
|
|