<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Chat Without Registration</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f9f9f9;
text-align: center;
margin: 0;
padding: 0;
}
.container {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.form-container {
background: linear-gradient(to right, #ffcc00, #ff0066);
border-radius: 15px;
box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
padding: 40px;
max-width: 400px;
width: 90%;
color: #fff;
}
h2 {
color: #fff;
margin-bottom: 30px;
}
label {
display: block;
margin-bottom: 10px;
font-weight: bold;
text-align: left;
}
input[type="text"],
select {
width: 100%;
padding: 12px;
margin-bottom: 20px;
border: 1px solid #ccc;
border-radius: 5px;
box-sizing: border-box;
font-size: 16px;
background-color: #f7f7f7;
}
input[type="submit"] {
background-color: #ff3366;
color: #fff;
border: none;
padding: 15px 30px;
font-size: 18px;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s ease;
width: 100%;
}
input[type="submit"]:hover {
background-color: #e6005c;
}
.logo {
max-width: 100px;
margin-bottom: 20px;
}
</style>
</head>
<body>
<div class="container">
<div class="form-container">
<h2>Chat Without Registration</h2>
<form action="https://www.youtube.com/@earnonlinewithtechpk" method="get" target="_blank">
<label for="name">Choose Name:</label>
<input type="text" id="name" name="name" required>
<label for="gender">Gender:</label>
<select id="gender" name="gender">
<option value="female">Female</option>
<option value="male">Male</option>
</select>
<label for="age">Age:</label>
<select id="age" name="age">
<option value="18-25">18-25</option>
<option value="26-35">26-35</option>
<option value="36-45">36-45</option>
<option value="46+">46+</option>
</select>
<label for="country">Country:</label>
<select id="country" name="country">
<option value="usa">United States</option>
<option value="uk">United Kingdom</option>
<option value="canada">Canada</option>
<option value="australia">Australia</option>
<!-- Add more countries as needed -->
</select>
<input type="submit" value="Start Chat Now">
</form>
</div>
</div>
</body>
</html>