Introduction to HTML
HTML (HyperText Markup Language) is the standard markup language for creating web pages. It describes the structure of a web page using elements and tags.
What is HTML?
HTML is the backbone of web development. It provides the structure for content on the web, such as text, images, links, and more.
<!DOCTYPE html>
<html lang="en">
<head>
<title>My First Web Page</title>
</head>
<body>
<h1>Hello, World!</h1>
<p>This is my first web page.</p>
</body>
</html>
Why Learn HTML?
- Foundation of Web Development: HTML is essential for building websites.
- Easy to Learn: HTML has a simple syntax and is beginner-friendly.
- Compatibility: Works across all browsers and devices.