HTML stands for Hyper Text Markup Language and it serves the base of the Web.

HTML (somethimes together with CSS and Javascript) tells how to display the information in the web to the end users.

The following figure shows some of the HTML semantic tags :point_down::

Image description

Some key points of HTML:

  • :bell: HTML is supposed to act as the skeleton of the web page.
  • :bell: HTML should be used according to their semantic meanings.
  • :bell: Styling the page should not be the purpose of HTML.

A typical example skeleton code of HTML:

<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<title>example code of HTML</title>
</head>
<body>
	<h1>Hello world</h1>
</body>
</html>
#=> prints 'Hello world'.

Search and check out the easy to follow book :book: HTML&CSS: Design and Build Websites for more info on how to get the most out of HTML. A basic and comprehensive HTML knowlege base is :link: Mozilla Developer Network. The more academic and theoretic resource for HTML is in the standardization body website :link: W3C. If you have questions, you can drop me an email :e-mail: below.