Project 1: Portfolio
HTML Masterclass
Builds on these lessons
Step 1 of 4
Project
The Document Skeleton
Every HTML page starts with the same skeleton. Add the <!DOCTYPE html> declaration so the browser renders in standards mode, wrap everything in <html lang="en">, and inside <head> set the character encoding, the responsive viewport, and a <title>. Leave <body> empty for now — your portfolio will live there.
🎯 Your Task
Please add the exact code shown in the light gray box below to your editor.Do not delete your previous code, just insert these new lines in the correct place!
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Alex Rivera | Web Developer</title>
</head>
<body>
</body>
</html>← Previous
Next →