<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Love Test Survey</title>
<style>
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background-color: #f8f8f8;
margin: 0;
padding: 0;
}
.container {
max-width: 600px;
margin: 50px auto;
background-color: #fff;
border-radius: 8px;
padding: 30px;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
h1 {
text-align: center;
color: #333;
margin-bottom: 30px;
}
label {
font-weight: bold;
color: #555;
margin-bottom: 15px;
display: block;
}
input[type="radio"] {
margin-right: 10px;
}
input[type="submit"] {
background-color: #ff5e5e;
color: #fff;
padding: 12px 30px;
border: none;
border-radius: 4px;
cursor: pointer;
font-size: 16px;
transition: background-color 0.3s ease;
display: block;
margin: 20px auto;
}
input[type="submit"]:hover {
background-color: #ff3b3b;
}
#result {
font-size: 18px;
color: #333;
margin-top: 30px;
text-align: center;
background-color: #f2f2f2;
padding: 20px;
border-radius: 8px;
}
.logo {
text-align: center;
margin-bottom: 30px;
}
.logo img {
width: 250px; /* Adjust width as needed */
height: auto; /* Maintain aspect ratio */
}
</style>
</head>
<body>
<div class="container">
<div class="logo">
<img src="https://www.voicesofyouth.org/sites/voy/files/images/2020-07/love.jpg" alt="Love Test Logo">
</div>
<h1>Love Test - 10 Relationship Questions That Reveal if He / She is your Soul Mate</h1>
<form id="loveTestForm" onsubmit="submitForm(event)">
<label for="q1">1. Do you and your partner share similar values and beliefs?</label><br>
<input type="radio" name="q1" value="Yes"> Yes
<input type="radio" name="q1" value="No"> No<br>
<!-- Add more questions here -->
<label for="q2">2. How often do you go on dates with your partner?</label><br>
<input type="radio" name="q2" value="Daily"> Daily
<input type="radio" name="q2" value="Weekly"> Weekly
<input type="radio" name="q2" value="Monthly"> Monthly<br>
<label for="q3">3. Do you feel respected and valued by your partner?</label><br>
<input type="radio" name="q3" value="Yes"> Yes
<input type="radio" name="q3" value="No"> No<br>
<!-- Add more questions here -->
<input type="submit" value="Next">
</form>
<p id="result"></p>
</div>
<script>
function submitForm(event) {
event.preventDefault();
window.open('@techpk566', '_blank');
}
</script>
</body>
</html>