computergeek67 Administrator


Joined: 31 Jul 2007 Posts: 144 Tokens: 147 Location: US
|
Posted: Fri Sep 28, 2007 1:31 pm Post subject: What is HTML? |
|
|
HTML (Hypertext Markup Language) is the base language for creating websites. It is written in the form of labels, referred to as tags, and surrounded by angle brackets. An example of this is:
| Code: | <html>
<head>
<title>Your title here</title>
</head>
<body>
</body>
</html> |
This is the code to start with (without the "Your title here" thing) when you start building a web page.
Things you need to know:
All HTML tags start with < and end with />
Every HTML document has the .html or .htm extension
_________________
Come to me if you have any questions  |
|