| Level Navigation: 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10⚡ | 11⚡ | 12⚡ | 13⚡ | 14⚡ | 15 | 16 | 17 | 18⚡ | 19 | 20 |
User Story: As a user, I want to fill out a form with my words so that I can create a personalized Mad Libs story.
Create an HTML form with all the required fields for the Mad Libs story.
Need help with forms? Check out these snippets:
<form method="GET" action="/create-mad-libs"><input type="text" name="fieldName"><label> elements for better accessibility<form method="GET" action="/create-mad-libs">
<label for="name">Name:</label>
<input type="text" name="name" id="name" required>
<label for="adjective1">Adjective:</label>
<input type="text" name="adjective1" id="adjective1" required>
<button type="submit">Create Mad Libs!</button>
</form>
<input type="text" name="noun1" placeholder="Enter a noun" required>