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
<!DOCTYPE html>specifies that this is an HTML5 document.- The
<html>element is the root element of an HTML page. - The
<head>element contains meta information about the document. - The
<body>element contains the visible page content.

