Project 14: Newsletter Form
HTML Masterclass
Builds on these lessons
Step 1 of 4
Project
The <form> Element
Every input on a page needs to live inside a <form>. Add a <form action="/subscribe" method="POST"> — action is where the data goes when submitted, method is how it's sent. Leave it empty for now; you'll fill it with real fields next.
🎯 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>The Signal | Newsletter</title>
</head>
<body>
<h1>The Signal</h1>
<p>One email a week. No noise.</p>
<form action="/subscribe" method="POST">
</form>
</body>
</html>