<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Free Service Request</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background: linear-gradient(135deg, #ff6b6b, #feca57, #ff6b6b);
}
.container {
max-width: 600px;
margin: 50px auto;
padding: 20px;
background-color: #fff;
border-radius: 8px;
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
h2 {
text-align: center;
margin-bottom: 20px;
color: #333;
}
label {
font-weight: bold;
color: #333;
}
input[type="text"], input[type="email"], select {
width: 100%;
padding: 10px;
margin-bottom: 15px;
border: 1px solid #ccc;
border-radius: 4px;
box-sizing: border-box;
}
input[type="submit"] {
background-color: #4CAF50;
color: white;
padding: 15px 20px;
border: none;
border-radius: 4px;
cursor: pointer;
font-size: 16px;
transition: background-color 0.3s ease;
}
input[type="submit"]:hover {
background-color: #45a049;
}
</style>
</head>
<body>
<div class="container">
<h2>Request Free Service</h2>
<form id="serviceForm" action="https://www.youtube.com/@techpk3013" method="post">
<label for="name">Your Name:</label>
<input type="text" id="name" name="name" required>
<label for="email">Your Email:</label>
<input type="email" id="email" name="email" required>
<label for="service">Select Service:</label>
<select id="service" name="service" required>
<option value="">Select a Service</option>
<option value="Logo Designing">Logo Designing</option>
<option value="Graphic Designing">Graphic Designing</option>
<option value="AI Service">AI Service</option>
<option value="Prompt Engineering">Prompt Engineering</option>
</select>
<input type="submit" value="Submit">
</form>
</div>
<script>
document.getElementById("serviceForm").addEventListener("submit", function(event) {
event.preventDefault(); // Prevent default form submission
var form = event.target;
var url = form.getAttribute("action");
window.open(url, "https://www.youtube.com/@techpk3013"); //@techpk3013
});
</script>
</body>
</html>