JavaScript Tutorial

What is HTML

HTML was first created by Tim Berners-Lee, Robert Cailliau, and others starting in 1989. It stands for Hypertext Markup Language. Originally, this language was designed with the intent to create different lists and headings, but later on, it became primarily used to develop websites.

With only HTML, we can create static websites. Initially, HTML included only tags, elements, and attributes, but with the introduction of HTML5, developers have a wider range of options, such as APIs, storage, and other support.

Here is an example code of HTML Document

 

Here is an example of HTML Document

<html>
<head>
<title>This is a page title</title>
</head>
<body>
<h1>This is a heading</h1>
<p>This is a paragraph.</p>
</body>
</html>

Pre-requisites before learning HTML

  • Experience with any of the code editors like Notepad++, Sublime, or even Notepad is fine.
  • Experience with any browser.
  • Browsing experience with files and directories.