-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmassage.html
More file actions
143 lines (126 loc) · 3.69 KB
/
massage.html
File metadata and controls
143 lines (126 loc) · 3.69 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Get $10 Off - Share a Quiz</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
padding: 20px;
}
.container {
background: white;
border-radius: 20px;
padding: 60px 40px;
max-width: 600px;
width: 100%;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
text-align: center;
}
.badge {
display: inline-block;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
padding: 12px 24px;
border-radius: 50px;
font-size: 18px;
font-weight: bold;
margin-bottom: 30px;
box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}
h1 {
font-size: 42px;
color: #2d3748;
margin-bottom: 20px;
line-height: 1.2;
}
.subtitle {
font-size: 20px;
color: #4a5568;
margin-bottom: 40px;
line-height: 1.6;
}
.steps {
background: #f7fafc;
border-radius: 15px;
padding: 30px;
margin-bottom: 40px;
text-align: left;
}
.step {
display: flex;
align-items: flex-start;
margin-bottom: 20px;
}
.step:last-child {
margin-bottom: 0;
}
.step-number {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
width: 32px;
height: 32px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-weight: bold;
flex-shrink: 0;
margin-right: 15px;
}
.step-text {
color: #2d3748;
font-size: 16px;
line-height: 1.6;
padding-top: 4px;
}
.cta-button {
display: inline-block;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
text-decoration: none;
padding: 18px 40px;
border-radius: 50px;
font-size: 18px;
font-weight: bold;
transition: transform 0.2s, box-shadow 0.2s;
box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}
.cta-button:hover {
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}
.cta-button:active {
transform: translateY(0);
}
@media (max-width: 600px) {
.container {
padding: 40px 25px;
}
h1 {
font-size: 32px;
}
.subtitle {
font-size: 18px;
}
}
</style>
</head>
<body>
<div class="container">
<p class="subtitle">Get $10 off your next session when you create a quiz and share it with 10 friends</p>
<a href="https://howwellapp.com/" class="cta-button">Create Your Quiz Now</a>
</div>
</body>
</html>