HTML Tutorials

What is HTML?
HTML stands for Hyper Text Markup Language and it is the most widely used language to create Web Page.

HTML is a Mark-Up Language which means simply “mark-up” a text documents with Tags that tell a web browser how to structure it to display.

HTML consists of a series of Elements.

HTML elements tell the browser how to display the content

HTML elements label pieces of content such as “this is a heading”, “this is a paragraph”, “this is a link”, etc.

HTML Structure

<!DOCTYPE html>

<html>

<head>

<title>Page title</title>

</head>

<body>

<h1>Webpage’s Heading</h1>

<p>Hello World.</p>

</body>

</html>

Scroll to Top