Skip to content
This repository was archived by the owner on Jul 6, 2024. It is now read-only.

Commit

Permalink
feat: required inputs
Browse files Browse the repository at this point in the history
  • Loading branch information
mhaidarhanif committed Apr 2, 2024
1 parent 5c2172c commit b06cf66
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
4 changes: 4 additions & 0 deletions index.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
body {
font-family: sans-serif;
}

a {
text-decoration: none;
}
3 changes: 3 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ <h1>Address Book</h1>
name="fullName"
type="text"
placeholder="Elon Musk"
required
/>
</div>
<div>
Expand All @@ -48,6 +49,7 @@ <h1>Address Book</h1>
name="email"
type="email"
placeholder="[email protected]"
required
/>
</div>
<div>
Expand All @@ -57,6 +59,7 @@ <h1>Address Book</h1>
name="phone"
type="phone"
placeholder="+1234567890"
required
/>
</div>
<div>
Expand Down

0 comments on commit b06cf66

Please sign in to comment.