HTML & CSS Foundations
Build beautiful websites using the building blocks of the web.
Next Module: DOM ManipulationWelcome to Web Development
What is HTML?
HTML (HyperText Markup Language) is the foundation of all web pages. It provides the structure and content of a page, defining elements like headers, paragraphs, and links.
<html lang="en"
>head>
<meta charset="UTF-8">
<title>My First Page</title>
</head>
<body>
<h1>Hello, World!</h1>
</body>
</html>