HTML Introduction

This HTML Tutorial is for beginners. It teaches you HTML from the ground up - starting with the HTML basics. Coding HTML is actually quite easy - as this tutorial will show you. There's a lot of information in this tutorial, so I recommend you take your time and cover off a little bit each day. Don't worry if it takes you several days to complete - it's better to fully understand everything than to brush over it and not fully comprehend it.

What is HTML?

HTML is a language for describing web pages.HTML, which stands for HyperText Markup Language, is a markup language used to create web pages. The web developer uses "HTML tags" to format different parts of the document. For example, you use HTML tags to specify headings, paragraphs, lists, tables, images and much more.

HTML Tags

HTML markup tags are usually called HTML tags. HTML tags are keywords surrounded by angle  brackets like <html>. HTML tags normally come in pairs like <b> and </b>. The first tag in a pair is the start tag, the second tag is the end tag. Start and end tags are also called opening tags and closing tags
1