How to create a form with icons using CSS?



Following is the code to create a form with icons −

Example

 Live Demo

<!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width, initial-scale=1" /> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"/> <style> body {    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; } * {    box-sizing: border-box; } h1 {    text-align: center; } form {    max-width: 500px;    margin: auto; } .fieldContainer {    display: flex;    width: 100%;    margin-bottom: 15px; } .icon {    font-size: 30px;    padding: 10px;    background: rgb(11, 9, 116);    color: white;    min-width: 50px;    text-align: center; } .field {    font-size: 20px;    width: 100%;    padding: 10px;    outline: none; } .field:focus {    border: 2px solid dodgerblue; } .btn {    font-size: 24px;    background-color: rgb(20, 60, 170);    color: white;    padding: 15px 20px;    border: none;    cursor: pointer;    width: 100%;    opacity: 0.9;    border-radius: 8px; } .btn:hover {    opacity: 1; } </style> </head> <body> <h1>Register Form Example</h1> <form action="/action_page.php"> <div class="fieldContainer"> <i class="fa fa-user icon"></i> <input class="field" type="text" placeholder="Username" name="usrnm" /> </div> <div class="fieldContainer"> <i class="fa fa-envelope icon"></i> <input class="field" type="text" placeholder="Email" name="email" /> </div> <div class="fieldContainer"> <i class="fa fa-key icon"></i> <input class="field" type="password" placeholder="Password" name="pass"/> </div> <div class="fieldContainer"> <i class="fa fa-birthday-cake icon" aria-hidden="true"></i> <input class="field" type="text" placeholder="Date of Birth" name="dob"/> </div> <button type="submit" class="btn">Register</button> </form> </body> </html>

Output

This will produce the following output −

Updated on: 2020-04-08T09:31:29+05:30

748 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements