<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dating Form</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, textarea {
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;
}
.logo {
text-align: center;
margin-bottom: 20px;
}
</style>
</head>
<body>
<div class="container">
<div class="logo">
<img src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhNQy9tpsn2Z_vhm2nIjAEVmTpUTMVb9mLeDjVhPHHf38e0Wml1cFwCWR6jQQliLra0SaBikfXxSevnh7d7dUXRrWL_-jkcTMRwpa9YqPxRVC21uAs8Rmw4REJET5grCqiOdrqYUeP7RlyhDqTSK41u8GAmVSyI5LcUtV0HegDc1Ajh9yixZ6wusoLCWag/s1600/Untitled%20design%20(17).png" alt="Logo">
</div>
<h2>Meet Your Desire Date</h2>
<form id="datingForm" action="#" 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="age">Your Age:</label>
<input type="number" id="age" name="age" required>
<label for="gender">Your Gender:</label>
<select id="gender" name="gender" required>
<option value="">Select Your Gender</option>
<option value="Male">Male</option>
<option value="Female">Female</option>
<option value="Other">Other</option>
</select>
<label for="partner_gender">Preferred Partner's Gender:</label>
<select id="partner_gender" name="partner_gender" required>
<option value="">Select Preferred Partner's Gender</option>
<option value="Male">Male</option>
<option value="Female">Female</option>
<option value="Other">Other</option>
</select>
<label for="description">Describe Yourself:</label>
<textarea id="description" name="description" rows="4" required></textarea>
<label for="partner_description">Describe Your Ideal Partner:</label>
<textarea id="partner_description" name="partner_description" rows="4" required></textarea>
<input type="submit" value="Submit">
</form>
</div>
<script>
document.getElementById("datingForm").addEventListener("submit", function(event) {
event.preventDefault(); // Prevent default form submission
var form = event.target;
var url = "https://www.youtube.com/@techpk3013"; //techpk3013
window.open(url, "_blank"); // Open the URL in a new tab
});
</script>
</body>
</html>