Writing Websites
http://www.tkhome.net 

 

Basics

Here you can find the basics in writing HTML:

 

How can write HTML-files?

You don't need expensive programmes for writing HTML-files. Windows' Notepad or something else is enough.
You only have to write the source and save the file with the expension ".htm".

 

Basic source

Every HTML-file has the same basic source:

<html>
 
<head>
<title>Window title</title>
</head>
 
<body>
Site content
</body>
 
</html>

 

The Tag

You have to write every command in a tag. For example: <title>

The most tags need a closing tag after the content of the command like this:</title>

If you want to define a text bold you write this:
<b>Bold text</b>
Result: Bold text

 

Links

To connect sites with each other you can use links.
Example: <p><a href="http://www.orf.at">Link to orf.at</a></p>
The end of the link is orf.at and looks like this: Link to orf.at

 

Adding images

You can paste images in your HTML-site to give it a personal note. (.gif and .jpg)
The source <img src="title.gif"> will be shown like this:

You don't have to close <img>-Tags. (see above)

 

[Home] [Basics] [Headlines]
[Paragraphs] [Links]

top 

TK Home
©2002 Thomas Kohlwein