<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>SwingKing.golf | Online Swing Analysis</title>
<style>
body {
font-family: Arial, sans-serif;
background: linear-gradient(135deg, #006400, #00a000);
color: white;
text-align: center;
margin: 0;
padding: 0;
}
header {
padding: 40px 20px 20px;
}
h1 {
font-size: 2.5em;
margin-bottom: 0.2em;
}
p {
font-size: 1.1em;
max-width: 600px;
margin: 10px auto;
line-height: 1.5em;
}
.button {
display: inline-block;
margin-top: 30px;
padding: 15px 35px;
font-size: 1.1em;
background-color: #ffffff;
color: #006400;
text-decoration: none;
border-radius: 8px;
font-weight: bold;
transition: background 0.3s, color 0.3s;
}
.button:hover {
background-color: #00a000;
color: white;
}
footer {
margin-top: 60px;
padding: 20px;
font-size: 0.9em;
opacity: 0.8;
}
</style>
</head>
<body>
<header>
<h1>Welcome to SwingKing.golf</h1>
<p>Upload your golf swing, and get a personalized analysis from our swing experts.
Improve your game with insights on posture, swing plane, and tempo — all for <strong>$39.99</strong>.</p>
<a class="button" href="YOUR_STRIPE_PAYMENT_LINK" target="_blank">Get My Swing Analysis – $39.99</a>
</header>
<footer>
© 2025 SwingKing.golf · All Rights Reserved
</footer>
</body>
</html>