HTML & CSS
The foundation of every modern website and application
Next Module: HTML BasicsWhat You'll Learn
This series will teach you the core components of modern web development:
HTML Structure
Learn how to create the foundation of web pages using HTML elements and semantic structure.
<!DOCTYPE html>
<html>
<head>
<title>My Website</title>
</head>
<body>
<h1>Hello World</h1>
</body>
</html>