<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>IT Software Registration</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f0f0f0;
}
.container {
max-width: 500px;
margin: 50px auto;
background-color: #fff;
padding: 20px;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
h2 {
text-align: center;
}
.logo {
display: block;
margin: 0 auto 20px;
}
input[type="text"], input[type="email"], input[type="password"], input[type="submit"], select {
width: 100%;
padding: 10px;
margin: 8px 0;
border: 1px solid #ccc;
border-radius: 5px;
box-sizing: border-box;
}
input[type="submit"] {
background-color: #4CAF50;
color: white;
border: none;
cursor: pointer;
}
input[type="submit"]:hover {
background-color: #45a049;
}
.download-link {
text-align: center;
}
</style>
</head>
<body>
<div class="container">
<img src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEin2DN3KM-ehWARs6wcoXe_GxxICFIANeKwj6v9sN_y32YEIUuKczIpEBpzY3pmLM6LLHPpH7p8mnsA5oLHkRd7yFOkw0ZdCzii2neeRyNa3g3RR5DsFGLZMzUu7AT5zI2Q-T8QWWzmL_HLeTg08SJjEaH-XWY63uzTK3CZzB8RTXWzIdCrRoGZToGrJYfl/s1600/Register%20Now.png" alt="Logo" class="logo">
<h2>IT Software Registration</h2>
<form action="https://www.youtube.com/@techpk3013" method="post" target="_blank">
<input type="text" id="name" name="name" placeholder="Your Name" required>
<input type="email" id="email" name="email" placeholder="Your Email" required>
<input type="password" id="password" name="password" placeholder="Password" required>
<select id="software" name="software" required>
<option value="" disabled selected>Select Software</option>
<option value="Graphic Designing">Graphic Designing</option>
<option value="Python Advance">Python Advance</option>
<option value="Web Designing">Web Designing</option>
</select>
<input type="text" id="otherSoftware" name="otherSoftware" placeholder="Other Software (if not listed)">
<input type="submit" value="Register">
</form>
</body>
</html>