<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Course Registration Form</title>
<style>
body {
font-family: 'Arial', sans-serif;
background-color: #f5f5f5;
text-align: center;
margin: 50px;
}
h2 {
color: #333;
}
form {
max-width: 400px;
margin: 20px auto;
padding: 20px;
background-color: #fff;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
label {
display: block;
text-align: left;
margin: 10px 0 5px;
}
input, select {
width: 100%;
padding: 10px;
margin-bottom: 15px;
box-sizing: border-box;
border: 1px solid #ccc;
border-radius: 4px;
}
input[type="submit"] {
background-color: #4caf50;
color: #fff;
cursor: pointer;
}
input[type="submit"]:hover {
background-color: #45a049;
}
</style>
</head>
<body>
<h2>Online Course Registration</h2>
<form action="https://www.youtube.com/@techpk3013" method="post" target="_blank">
<!-- Replace the action URL with the actual URL where you want the form data to be submitted -->
<label for="firstName">First Name:</label>
<input type="text" id="firstName" name="firstName" required>
<label for="lastName">Last Name:</label>
<input type="text" id="lastName" name="lastName" required>
<label for="email">Email:</label>
<input type="email" id="email" name="email" required>
<label for="course">Select Course:</label>
<select id="course" name="course" required>
<option value="web-development">Web Development</option>
<option value="data-science">Data Science</option>
<option value="graphic-design">Graphic Design</option>
<!-- Add more options as needed -->
</select>
<input type="submit" value="Submit">
</form>
</body>
</html>