Skip to content

Commit

Permalink
add id property for various input tags
Browse files Browse the repository at this point in the history
  • Loading branch information
Devansh K Shukla committed Apr 8, 2022
1 parent c5d0b38 commit 168edb4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -339,16 +339,16 @@ <h2>contact me</h2>
<form method="POST">
<div class="row">
<div class="input-group">
<input type="name" placeholder="Name" class="input-control" required>
<input type="name" placeholder="Name" class="input-control" id="name" required>
</div>
<div class="input-group">
<input type="email" placeholder="Email" class="input-control" required>
<input type="email" placeholder="Email" class="input-control" id="email" required>
</div>
<div class="input-group">
<input type="text" placeholder="Subject" class="input-control" required>
<input type="text" placeholder="Subject" class="input-control" id="subject" required>
</div>
<div class="input-group">
<textarea placeholder="Message" class="input-control" required></textarea>
<textarea id="message" placeholder="Message" class="input-control" required></textarea>
</div>
<div class="submit-btn">
<button type="submit" class="btn">send message</button>
Expand Down

0 comments on commit 168edb4

Please sign in to comment.