Basic HTML
HTML | It's more basic than you think.

Okay, so you're thinking about starting to make websites and don't know a thing about HTML. Or maybe you know a little bit. Or maybe you know a lot, and are just checking to make sure we know our stuff.
In any case, this tutorial will hopefully get you on your way to web design.
The first step is to open up text editor, notepad, or any other plain text editor you might have. Then open a new file and copy and paste the following code into the page:
<head>
<title>
My New Web Page
</title>
</head>
<body>
Here's some content on my new web page!
</body>
</html>
HTML is comprised up of 'tags'. Each of these tags begins with a '<' symbol, and ends with a '>' symbol. An 'opening tag' might look like this:
And the 'closing tag' might look like this:
You'll notice they're exactly the same, only the closing tag has a '/' in front of the word. So what's the point of these tags? They show us where a certain section of the web page starts and ends. Now let's look at our web page code.
2. <head>
3. <title>
4. My New Web Page
5. </title>
6. </head>
7. <body>
8. Here's some content on my new web page!
9. </body>
10. </html>
The body tag in line 6 is the one that holds all the contents of the web page that you actually see. You'll notice that 'My New Web Page' doesn't show up on the actual web page itself. Following the contents of the web page, we have the closing tags for the body and html sections.
Another thing that you'll notice is that the tags don't overlap each other. If one tag starts in another, it ends inside that tag as well. For example, incorrect code would be:
<head>
<title>
</head>
</title>
<body>
</html>
</body>
I hope you enjoyed our first, very basic tutorial on HTML. We'll post some more on how to add to this later.
Posted by Adam on 18.01.2009.
Welcome to Our Blog!
A resource for developers, designers, and those without anything else to do.

Thanks for stopping by, and welcome to our official North43 Design blog. We hope to adopt the whole 'open source' attitude by sharing our resources with you and the rest of the web design community. Keep checking back for new projects, samples and tutorials to keep your skills sharp.
See you soon.
Posted by Adam on 14.01.2009.
Our Links
North43 DesignOur Latest
Client Login
Terms of Use
Categories
View AllNews
Samples
Tutorials
Archive
This MonthLast Month
March 2009
February 2009
January 2009
