Introduction_to_HTML_for_Beginners
Introduction_to_HTML_for_Beginners
What is HTML?
HTML stands for HyperText Markup Language. It is the standard language used to
create and design webpages. HTML uses 'tags' to structure content on the web.
These tags tell the browser how to display text, images, links, and other elements.
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<h1>This is a Heading</h1>
<p>This is a paragraph.</p>
</body>
</html>