HTML Tutorials
HTML Stands for HyperText Markup Language. Tim Berners Lee invented HTML, which is now in its latest version, HTML 5. HTML is easy and fun to learn. A basic working knowledge of a Text Editor like Notepad or Notepad++ and a Web Browser like Firefox or Chrome is enough to learn HTML.
The markup for an HTML document would look like this:
<html>
<head>
<title>…</title>
</head>
<body>
</body>
</html>