HTML bootcamp · Lab 07

Email form

mediumForms12 minLesson: Forms

Read the question, write HTML on the right, then Preview or Check.

QuestionHint and solution stay closed until you open them

A form with a label Email, an input type email named email, and a submit button Join.

Examples

Example 1
Expected
form, input[type=email][name=email], button Join
Hint
  1. <input type="email" name="email">
  2. A button or input type submit with the text Join.
Show correct code

Peek only after you have tried. You can still Check your own version.

<form>
  <label>Email <input type="email" name="email"></label>
  <button type="submit">Join</button>
</form>
index.htmlLive preview · Check reads the DOM
ResultIdle
Run to see output. Check grades the tests.