HTML/CSS - 12
HTML/CSS - 12: Forms & User Input
Learn how to create proper forms with labels, inputs, buttons, and validation.
👀 Show Solution
<form> <label for="name">Name</label> <input type="text" id="name" required> <label for="email">Email</label> <input type="email" id="email" required> <button type="submit">Submit</button> </form>
