If you want to create a visually attractive website, HTML is one of the fundamentals. In this guide, I will teach you HTML.

The structure

We see all kinds of documents all day, and those could vary from Newspaper to shop catalogs. A web page, in its essence, is just a web variant of a document, but with web pages, there comes some ‘coding’ structure to build a web page. This is done in HTML (HyperText Markup Language).

<!DOCTYPE html>
<html>
<title>HTML Tutorial</title>
<body>

<h1>This is a heading</h1>
<p>This is a paragraph.</p>

</body>
</html>

Up here, you can see a piece of HTML. The HTML code is inside the angled brackets, so-called HTML elements. Each tag has an opening and a closing tag. A closing tag needs to be done like this.

</ TAG >

Tags are like containers. They tell you something about the information between the opening and the closing tag.

#programming #web-development #guide #tech #html

The Ultimate HTML Guide for Beginners in 2020.
1.35 GEEK