Buttons
Button 1: <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>LGM</title>
<script src="https://cdn.tailwindcss.com"></script>
<style>
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap');
body {
font-family: 'Inter', system-ui, sans-serif;
}
.card {
max-width: 380px;
margin: 40px auto;
background: white;
border-radius: 20px;
box-shadow: 0 10px 30px rgba(0,0,0,0.08);
overflow: hidden;
border: 1px solid #f0f0f0;
}
.content {
padding: 28px 28px 24px;
text-align: left;
}
.icon {
width: 52px;
height: 52px;
background: #f3f4f6;
border-radius: 9999px;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 20px;
}
.title {
font-size: 23px;
font-weight: 600;
color: #111827;
margin-bottom: 8px;
}
.subtext {
font-size: 15px;
color: #4b5563;
line-height: 1.45;
}
.button {
display: block;
width: 100%;
margin-top: 28px;
padding: 15px 0;
background: linear-gradient(to right, #f59e0b, #f97316);
color: white;
font-weight: 700;
font-size: 16px;
text-align: center;
border-radius: 9999px;
text-decoration: none;
transition: all 0.2s ease;
box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}
.button:hover {
transform: translateY(-2px);
box-shadow: 0 8px 20px rgba(245, 158, 11, 0.4);
}
</style>
</head>
<body class="bg-gray-50 flex items-center justify-center min-h-screen">
<div class="card">
<div class="content">
<!-- Icon -->
<div class="icon">
<span class="text-3xl"> </span>
</div>
<!-- Title -->
<div class="title">LGM</div>
<!-- Subtext -->
<p class="subtext">
Make $500 or more without talking to anybody.
</p>
<!-- Button -->
<a href="https://your-dummy-link.com/lgm-launch"
class="button" target="_blank">
Launch LGM
</a>
</div>
</div>
</body>
</html>
Button 1: <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>LGM</title>
<script src="https://cdn.tailwindcss.com"></script>
<style>
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap');
body {
font-family: 'Inter', system-ui, sans-serif;
}
.card {
max-width: 380px;
margin: 40px auto;
background: white;
border-radius: 20px;
box-shadow: 0 10px 30px rgba(0,0,0,0.08);
overflow: hidden;
border: 1px solid #f0f0f0;
}
.content {
padding: 28px 28px 24px;
text-align: left;
}
.icon {
width: 52px;
height: 52px;
background: #f3f4f6;
border-radius: 9999px;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 20px;
}
.title {
font-size: 23px;
font-weight: 600;
color: #111827;
margin-bottom: 8px;
}
.subtext {
font-size: 15px;
color: #4b5563;
line-height: 1.45;
}
.button {
display: block;
width: 100%;
margin-top: 28px;
padding: 15px 0;
background: linear-gradient(to right, #f59e0b, #f97316);
color: white;
font-weight: 700;
font-size: 16px;
text-align: center;
border-radius: 9999px;
text-decoration: none;
transition: all 0.2s ease;
box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}
.button:hover {
transform: translateY(-2px);
box-shadow: 0 8px 20px rgba(245, 158, 11, 0.4);
}
</style>
</head>
<body class="bg-gray-50 flex items-center justify-center min-h-screen">
<div class="card">
<div class="content">
<!-- Icon -->
<div class="icon">
<span class="text-3xl"> </span>
</div>
<!-- Title -->
<div class="title">LGM</div>
<!-- Subtext -->
<p class="subtext">
Make $500 or more without talking to anybody.
</p>
<!-- Button -->
<a href="https://your-dummy-link.com/lgm-launch"
class="button" target="_blank">
Launch LGM
</a>
</div>
</div>
</body>
</html>