Skip to content

Commit

Permalink
Update index.html
Browse files Browse the repository at this point in the history
Updated project
  • Loading branch information
nmceachin authored Feb 5, 2025
1 parent e05d33c commit 144f20d
Showing 1 changed file with 32 additions and 1 deletion.
33 changes: 32 additions & 1 deletion html-forms/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,37 @@
</head>

<body>
<main></main>
<main>
<form>
<div>
<label for="name">Name:</label>
<input id="name" type="text" name="name" />
</div>
<div>
<label for="location">Email:</label>
<input
id="location"
type="text"
name="zipcode"
autofocus="on"
maxlength="5"
required
/>
</div>
<div>
<label for="form-message">Message:</label>
<textarea
id="form-message"
name="message"
autofocus="on"
required
maxlength="200"
></textarea>
</div>
<button type="submit">Submit</button>


</form>
</main>
</body>
</html>

0 comments on commit 144f20d

Please sign in to comment.