HTML Foundations
✓ Completed
HTML (HyperText Markup Language) defines the structure of a web page. Learn about elements, attributes, semantic tags, forms, and accessibility best-practices.
html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>My Page</title>
</head>
<body>
<h1>Hello World</h1>
<p>Welcome to web dev!</p>
</body>
</html>