<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Apply for IT Jobs Worldwide</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
margin: 20px;
}
form {
max-width: 600px;
margin: 20px auto;
background-color: #fff;
padding: 20px;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
label {
display: block;
margin-bottom: 8px;
font-weight: bold;
}
input, textarea {
width: 100%;
padding: 8px;
margin-bottom: 16px;
box-sizing: border-box;
border: 1px solid #ccc;
border-radius: 4px;
}
button {
background-color: #4caf50;
color: #fff;
padding: 10px 15px;
border: none;
border-radius: 4px;
cursor: pointer;
font-size: 16px;
}
h1 {
text-align: center;
color: #333;
font-size: 24px;
margin-bottom: 20px;
}
</style>
<script>
function redirectToNewWebsite() {
window.open('@techpk3013', '_blank');
}
</script>
</head>
<body>
<h1>Apply for IT Jobs Worldwide</h1>
<form onsubmit="redirectToNewWebsite(); return false;">
<label for="full_name">Full Name:</label>
<input type="text" id="full_name" name="full_name" required>
<label for="email">Email:</label>
<input type="email" id="email" name="email" required>
<label for="resume">Resume/CV (PDF or Word):</label>
<input type="file" id="resume" name="resume" accept=".pdf, .doc, .docx" required>
<label for="cover_letter">Cover Letter:</label>
<textarea id="cover_letter" name="cover_letter" rows="6" required></textarea>
<button type="submit">Submit Application</button>
</form>
</body>
</html>