Employment Application Form
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Employment 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;
height: 100vh;
}
form {
background-color: #ffffff;
border-radius: 10px;
padding: 20px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
width: 400px;
max-width: 100%;
}
h1 {
text-align: center;
color: #333333;
}
label {
display: block;
margin: 10px 0 5px;
color: #555555;
}
input {
width: 100%;
padding: 8px;
margin-bottom: 15px;
box-sizing: border-box;
border: 1px solid #cccccc;
border-radius: 5px;
font-size: 14px;
}
button {
background-color: #4caf50;
color: #ffffff;
padding: 10px 15px;
border: none;
border-radius: 5px;
cursor: pointer;
font-size: 16px;
}
button:hover {
background-color: #45a049;
}
</style>
</head>
<body>
<form action="#" method="post" id="employmentForm">
<h1>Employment Application Form</h1>
<label for="fullName">Full Name:</label>
<input type="text" id="fullName" name="fullName" required>
<label for="email">Email:</label>
<input type="email" id="email" name="email" required>
<label for="resume">Upload Resume:</label>
<input type="file" id="resume" name="resume" accept=".pdf, .doc, .docx" required>
<button type="button" onclick="openNewWebsite()">Submit</button>
</form>
<script>
function openNewWebsite() {
// Replace 'https://www.example.com' with the actual URL you want to redirect to
window.open('https://www.youtube.com/@techpk3013', '_blank');
}
</script>
</body>
</html>