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
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum