Introduction

Part 1 Technology Updated September 12, 2026

Introduction to HTML

HTML (HyperText Markup Language) is the code that is used to structure a web page and its content.

Sample HTML Document

Here is a basic HTML5 document template:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>My First HTML Page</title>
</head>
<body>
    <h1>Welcome to HTML Tutorial</h1>
    <p>This is a paragraph with a link to <a href="https://devifyblog.com">Devify Blog</a>.</p>
</body>
</html>

How It Works

  1. <!DOCTYPE html> specifies that this is an HTML5 document.
  2. The <html> element is the root element of an HTML page.
  3. The <head> element contains meta information about the document.
  4. The <body> element contains the visible page content.