Responsive Form - Using Flexbox
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<h1>Align Form with Flexbox :</h1>
<form action="#" method="POST">
<ul>
<li>
<label>Your Name :</label>
<input type="text" name="Name">
</li>
<li>
<label>Phone Number :</label>
<input type="Phone" name="Phonenumber">
</li>
<li>
<label>Email Address :</label>
<input type="Email" name="emailaddress">
</li>
<li>
<button type="sumbit">Log In</button>
</li>
</ul>
</form>
</body>
</html>
Comments
Post a Comment