HTML Tutorials
HTML Stands for Hyper Text 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 Mozilla Firefox, Google Chrome or Microsoft Edge is enough to learn HTML.
HTML is the standard language used to create and design webpages. It provides the basic structure of a webpage by using a system of tags and attributes to define elements like headings, paragraphs, links, images, tables, forms, etc.
- Hyper Text: Refers to the ability to link to other documents using hyperlinks.
- Markup Language: Uses tags to “mark up” text to tell browsers how to display it.
The markup for an HTML document would look like this:
<html>
<head>
<title>…</title>
</head>
<body>
</body>
</html>
HTML Introduction
HTML Elements