lördag 18 september 2010

How to start writing HTML

The most basic part of being a webdesigner is knowing how to code and structure HTML. What you you need to do to get started:

1. Set up the document
Create a new textdocument using wordpad.
Open up the document.

Now every html document need to have these tags to be able to function;
<html>
<head>
</head>
<body>
everything visable is put in here
</body
</html>

This is how a html document is suppose to look like to function with minimum requirements.
Now click save as and name your document to "start.html"
There you go, now you can preview what you code in a webbrowser by right clicking the document and select Open with.

In the next post i will be showing you tags that you need to know when you will start making a website.