Category: HTML


HTML Tutorial: 1

August 20th, 2006 — 4:20am

This is gona be the first of a lot of HTML tutorials I plan on relasing. This tutorial will go over the basics of HTML and how to make your own HTML page.
So, let’s get started!

Part 1: What is html?

HTML, or HyperText Markup Language, is a markup language designed for the creation of web pages with hypertext and other information. HTML allows it to be parsed by a web browser. HTML is used to structure information, denoting certain text as headings, paragraphs, lists and so on. It can be used to describe, to some degree, the appearance and semantics of a document.

Part 2: What is the general syntax?

The syntax of HTML is very uniform, compared to other languages. It consists of elements (may be known as tags), properties, and inner content.

Each HTML element has to be wraped in <these>. There are hundreds of elements, which have their own properties. A property is like this: <tag property="value">

Continue reading »

Comments Off | HTML, Web Design

Back to top