Monday, May 20, 2013

HTML basic

Do you want to be a web designer and keep searching on some websites? The web designer should start to the very basic and that is where HTML basic comes in. Let's start discussing HTML.
HTML is a Hyper Text Mark Up Language. It composed of tags, the opening tag and the closing tag.
Example: <body> which is the opening tag and </body> which is the closing tag.
HTML has it's structured, just like us. We have the head the body and the feet but in HTML we have the head and body only. The structure is look like this.

<html>
  <head>
  <title>My first Web Page</title>
</head>
<body>

</body>
</html>

That's the structure of HTML. Save it as index.html and run it into your browser. It is just empty since we didn't include some of the important tags. On my next blog, I'm going to tackle the most useful tags and their uses also. If you have a comment leave them below otherwise till next time.

No comments:

Post a Comment