Skip to content

Commit

Permalink
Update index.html
Browse files Browse the repository at this point in the history
update index html to rebder form
  • Loading branch information
kprusty-thinkful authored Jun 9, 2024
1 parent ae43b0d commit 04a1cbc
Showing 1 changed file with 32 additions and 2 deletions.
34 changes: 32 additions & 2 deletions html-forms/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,38 @@
/>
<link href="style.css" rel="stylesheet" type="text/css" />
</head>

<body>
<main></main>
<main>
<div>
<form>
<div>
<label for="name">Name</label>
</div>
<div>
<input id="name" type="text" name="name" autofocus="on"/>
</div>

<div>
<label for="email">Email</label>
</div>

<div>
<input id="email" type="text" name="email"/>
</div>

<div>
<label for="message">Your Message</label>
</div>
<div>
<textarea id="message" name="message" rows="10" cols="50"></textarea>
</div>

<div>
<button type="submit">Submit</button>
</div>
</form>
</div>
</main>

</body>
</html>

0 comments on commit 04a1cbc

Please sign in to comment.