Untitled
unknown
plain_text
2 years ago
3.1 kB
4
Indexable
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>My Profile</title> <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" integrity="sha384-OgVRvuATP1z7JjHLkuOU7Xw704+h835Lr+ZmG5x1p5UksbbCk5THRPJW9U8U6zjJ" crossorigin="anonymous"> </head> <body> <div class="container my-5"> <h1 class="text-center mb-4">My Profile</h1> <form> <div class="form-row"> <div class="form-group col-md-4"> <label for="firstName">First Name</label> <input type="text" class="form-control" id="firstName" placeholder="Enter First Name"> </div> <div class="form-group col-md-4"> <label for="middleName">Middle Name</label> <input type="text" class="form-control" id="middleName" placeholder="Enter Middle Name"> </div> <div class="form-group col-md-4"> <label for="lastName">Last Name</label> <input type="text" class="form-control" id="lastName" placeholder="Enter Last Name"> </div> </div> <div class="form-row"> <div class="form-group col-md-6"> <label for="email">Email</label> <input type="email" class="form-control" id="email" placeholder="Enter Email"> </div> <div class="form-group col-md-6"> <label for="education">Education</label> <input type="text" class="form-control" id="education" placeholder="Enter Education"> </div> </div> <div class="form-row"> <div class="form-group col-md-6"> <label for="university">University</label> <input type="text" class="form-control" id="university" placeholder="Enter University"> </div> <div class="form-group col-md-6"> <label for="yearsOfExperience">Years of Experience</label> <input type="text" class="form-control" id="yearsOfExperience" placeholder="Enter Years of Experience"> </div> </div> <div class="form-row"> <div class="form-group col-md-6"> <label for="dob">DOB</label> <input type="date" class="form-control" id="dob" placeholder="Enter DOB"> </div> <div class="form-group col-md-6"> <label for="examsTaken">Exams Taken</label> <input type="text" class="form-control" id="examsTaken" placeholder="Enter Exams Taken"> </div> </div> <button type="submit" class="btn btn-primary">Save Changes</button> </form> </div> </body> </html>
Editor is loading...