Introduction to web page Designing using HTML
HTML (Hyper Text Markup Language) is the foundational language used to structure and design web pages. It uses a system of tags to define elements like headings, paragraphs, and images.
Basic structure of a HTML document
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Page Title</title>
</head>
<body>
<!-- Visible content goes here -->
</body>
</html>