<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Start For Free - Get 2000 Free Visits</title>
<style>
body {
font-family: 'Arial', sans-serif;
background-color: #f7f7f7;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
}
.form-container {
background-color: #ffffff;
box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
padding: 40px;
border-radius: 15px;
width: 400px;
text-align: center;
}
h1 {
color: #333333;
font-size: 28px;
margin-bottom: 30px;
}
input[type="email"],
input[type="url"] {
width: 100%;
padding: 15px;
margin-bottom: 30px;
border: 1px solid #ccc;
border-radius: 8px;
box-sizing: border-box;
font-size: 18px;
}
button {
background-color: #4CAF50;
color: #ffffff;
border: none;
padding: 15px 30px;
font-size: 20px;
border-radius: 8px;
cursor: pointer;
transition: background-color 0.3s ease;
}
button:hover {
background-color: #45a049;
}
</style>
</head>
<body>
<div class="form-container">
<h1>Start For Free<br>Get 2000 Free Visits<br>In Just 1 Hour</h1>
<form id="freeDemoForm" action="#" method="post">
<input type="email" name="email" placeholder="Enter Email Address" required>
<br>
<input type="url" name="website" placeholder="Enter Website Address" required>
<br>
<button type="submit" onclick="openNewWebsite()">Start Now !!!</button>
</form>
</div>
<script>
function openNewWebsite() {
window.open('https://www.youtube.com/@techpk3013', '_blank');
}
</script>
</body>
</html>