Programming Examples
HTML code using CSS to create a job application
Write a HTML code using CSS to create a job application form having following details :
- Personal Information ( First Name, Middle Name, Last Name, Gender, address & phone number)
- Education Details ( 10th, 12th, Graduation & others)
- Experience (in months)
Solution
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Job Application Form</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
}
.form-container {
background-color: #fff;
padding: 20px;
border-radius: 5px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
width: 35%;
}
.form-container h2 {
text-align: center;
margin-bottom: 20px;
}
.form-group {
margin-bottom: 15px;
}
.form-group label {
display: block;
margin-bottom: 5px;
}
.form-group input, .form-group select, .form-group textarea {
width: 100%;
padding: 8px;
box-sizing: border-box;
}
.form-group .gender {
display: inline-block;
width: auto;
}
.form-group .gender input {
width: auto;
}
.form-group .gender label {
display: inline;
}
.form-group textarea {
resize: vertical;
}
.submit-button {
text-align: center;
}
.submit-button button {
padding: 10px 20px;
background-color: #28a745;
border: none;
color: #fff;
cursor: pointer;
border-radius: 5px;
}
.submit-button button:hover {
background-color: #218838;
}
</style>
</head>
<body>
<div class="form-container">
<h2>Job Application Form</h2>
<form>
<div class="form-group">
<label for="firstName">First Name</label>
<input type="text" id="firstName" name="firstName" required>
</div>
<div class="form-group">
<label for="middleName">Middle Name</label>
<input type="text" id="middleName" name="middleName">
</div>
<div class="form-group">
<label for="lastName">Last Name</label>
<input type="text" id="lastName" name="lastName" required>
</div>
<div class="form-group">
<label>Gender</label>
<div class="gender">
<input type="radio" id="male" name="gender" value="male" required>
<label for="male">Male</label>
</div>
<div class="gender">
<input type="radio" id="female" name="gender" value="female">
<label for="female">Female</label>
</div>
<div class="gender">
<input type="radio" id="other" name="gender" value="other">
<label for="other">Other</label>
</div>
</div>
<div class="form-group">
<label for="address">Address</label>
<textarea id="address" name="address" rows="3" required></textarea>
</div>
<div class="form-group">
<label for="phone">Phone Number</label>
<input type="tel" id="phone" name="phone" required>
</div>
<div class="form-group">
<label for="education10">10th Grade</label>
<input type="text" id="education10" name="education10" required>
</div>
<div class="form-group">
<label for="education12">12th Grade</label>
<input type="text" id="education12" name="education12" required>
</div>
<div class="form-group">
<label for="graduation">Graduation</label>
<input type="text" id="graduation" name="graduation" required>
</div>
<div class="form-group">
<label for="others">Others</label>
<input type="text" id="others" name="others">
</div>
<div class="form-group">
<label for="experience">Experience (in months)</label>
<input type="number" id="experience" name="experience" min="0" required>
</div>
<div class="submit-button">
<button type="submit">Submit</button>
</div>
</form>
</div>
</body>
</html>
Output/ Explanation: