-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
371 lines (326 loc) Β· 11.3 KB
/
index.html
File metadata and controls
371 lines (326 loc) Β· 11.3 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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>How Well Do You Know Me? - Quiz App</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700&display=swap" rel="stylesheet">
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
:root {
--coral: #f87171;
--sky: #38bdf8;
--peach: #fdba74;
--purple: #8b5cf6;
--text: #1e293b;
--text-muted: #64748b;
}
body {
font-family: 'Outfit', sans-serif;
background: linear-gradient(135deg, var(--sky) 0%, var(--coral) 50%, var(--peach) 100%);
min-height: 100vh;
color: var(--text);
}
.container {
max-width: 1100px;
margin: 0 auto;
padding: 40px 24px;
}
header {
text-align: center;
padding: 40px 0 20px;
}
.header-content {
display: flex;
align-items: center;
justify-content: center;
gap: 24px;
text-align: left;
}
.app-icon {
width: 200px;
height: 200px;
border-radius: 22px;
box-shadow: 0 10px 40px rgba(0,0,0,0.15);
flex-shrink: 0;
}
.header-text {
max-width: 550px;
}
h1 {
font-size: clamp(1.75rem, 5vw, 2.5rem);
font-weight: 700;
color: white;
text-shadow: 0 2px 20px rgba(0,0,0,0.15);
margin-bottom: 8px;
}
.tagline {
font-size: 1.2rem;
color: white;
margin-bottom: 16px;
text-shadow: 0 1px 10px rgba(0,0,0,0.1);
}
.badges {
display: flex;
justify-content: center;
gap: 16px;
flex-wrap: wrap;
}
.badge {
display: inline-flex;
align-items: center;
gap: 8px;
background: white;
padding: 12px 24px;
border-radius: 12px;
text-decoration: none;
color: var(--text);
font-weight: 600;
box-shadow: 0 4px 20px rgba(0,0,0,0.1);
transition: transform 0.2s, box-shadow 0.2s;
}
.badge:hover {
transform: translateY(-2px);
box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}
.badge svg {
width: 24px;
height: 24px;
}
.screenshots {
display: flex;
justify-content: center;
gap: 16px;
padding: 30px 20px;
overflow-x: auto;
max-width: 100%;
}
.screenshot {
flex-shrink: 0;
width: 240px;
border-radius: 20px;
box-shadow: 0 20px 60px rgba(0,0,0,0.2);
transition: transform 0.3s;
}
.screenshot:hover {
transform: scale(1.02);
}
.content-section {
background: white;
border-radius: 32px;
padding: 60px 40px;
margin: 40px 0;
box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}
h2 {
font-size: 2rem;
font-weight: 700;
margin-bottom: 32px;
text-align: center;
color: var(--text);
}
.steps {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
gap: 32px;
max-width: 1000px;
margin: 0 auto;
}
.step {
text-align: center;
padding: 24px;
}
.step-number {
width: 48px;
height: 48px;
background: linear-gradient(135deg, var(--coral), var(--peach));
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: white;
font-weight: 700;
font-size: 1.25rem;
margin: 0 auto 16px;
}
.step h3 {
font-size: 1.25rem;
font-weight: 600;
margin-bottom: 8px;
}
.step p {
color: var(--text-muted);
line-height: 1.6;
}
.use-cases {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 24px;
max-width: 800px;
margin: 0 auto;
}
.use-case {
background: linear-gradient(135deg, #f8fafc, #f1f5f9);
padding: 24px;
border-radius: 16px;
text-align: center;
}
.use-case-icon {
font-size: 2rem;
margin-bottom: 12px;
}
.use-case h3 {
font-weight: 600;
margin-bottom: 4px;
}
.use-case p {
color: var(--text-muted);
font-size: 0.9375rem;
}
footer {
text-align: center;
padding: 40px 20px;
color: white;
}
footer p {
margin-bottom: 16px;
text-shadow: 0 1px 5px rgba(0,0,0,0.1);
}
footer a {
color: white;
text-decoration: underline;
text-underline-offset: 3px;
}
footer a:hover {
opacity: 0.9;
}
.footer-links {
display: flex;
justify-content: center;
gap: 24px;
}
@media (max-width: 768px) {
.container {
padding: 20px 16px;
}
header {
padding: 30px 0 15px;
}
.header-content {
flex-direction: column;
text-align: center;
gap: 16px;
}
.header-text {
text-align: center;
}
.badges {
justify-content: center;
}
.screenshots {
gap: 12px;
padding: 20px 16px;
}
.screenshot {
width: 200px;
}
.content-section {
padding: 40px 24px;
border-radius: 24px;
}
}
</style>
</head>
<body>
<div class="container">
<header>
<div class="header-content">
<img src="images/logo.png" alt="How Well Do You Know Me? App Icon" class="app-icon">
<div class="header-text">
<h1>How Well Do You Know Me?</h1>
<p class="tagline">The only quiz app where YOU write the questions. Find out who knows you best!</p>
<div class="badges">
<a href="https://apps.apple.com/us/app/how-well-do-you-know-me/id6749969354" class="badge" target="_blank">
<svg viewBox="0 0 24 24" fill="currentColor"><path d="M18.71 19.5c-.83 1.24-1.71 2.45-3.05 2.47-1.34.03-1.77-.79-3.29-.79-1.53 0-2 .77-3.27.82-1.31.05-2.3-1.32-3.14-2.53C4.25 17 2.94 12.45 4.7 9.39c.87-1.52 2.43-2.48 4.12-2.51 1.28-.02 2.5.87 3.29.87.78 0 2.26-1.07 3.81-.91.65.03 2.47.26 3.64 1.98-.09.06-2.17 1.28-2.15 3.81.03 3.02 2.65 4.03 2.68 4.04-.03.07-.42 1.44-1.38 2.83M13 3.5c.73-.83 1.94-1.46 2.94-1.5.13 1.17-.34 2.35-1.04 3.19-.69.85-1.83 1.51-2.95 1.42-.15-1.15.41-2.35 1.05-3.11z"/></svg>
Apple Store
</a>
<a href="https://play.google.com/store/apps/details?id=com.howwellapp.howwellapp" class="badge" target="_blank">
<svg viewBox="0 0 24 24" fill="currentColor"><path d="M3,20.5V3.5C3,2.91 3.34,2.39 3.84,2.15L13.69,12L3.84,21.85C3.34,21.6 3,21.09 3,20.5M16.81,15.12L6.05,21.34L14.54,12.85L16.81,15.12M20.16,10.81C20.5,11.08 20.75,11.5 20.75,12C20.75,12.5 20.53,12.9 20.18,13.18L17.89,14.5L15.39,12L17.89,9.5L20.16,10.81M6.05,2.66L16.81,8.88L14.54,11.15L6.05,2.66Z"/></svg>
Google Store
</a>
</div>
</div>
</div>
</header>
<div class="screenshots">
<img src="images/01.png" alt="Write a quiz about yourself" class="screenshot">
<img src="images/02.png" alt="Get your friends to take it" class="screenshot">
<img src="images/03.png" alt="See which friend knows you best" class="screenshot">
<img src="images/04.png" alt="Track quizzes you've taken" class="screenshot">
</div>
<section class="content-section">
<h2>How It Works</h2>
<div class="steps">
<div class="step">
<div class="step-number">1</div>
<h3>Write Your Quiz</h3>
<p>Create 10 custom questions about yourself with 4 multiple choice answers each.</p>
</div>
<div class="step">
<div class="step-number">2</div>
<h3>Share It</h3>
<p>Share to your socials - the more friends who take your quiz, the more fun it will be for you. They can take your quiz without having to sign up.</p>
</div>
<div class="step">
<div class="step-number">3</div>
<h3>See Results</h3>
<p>Track who scored highest on the leaderboard. Settle the debate of who knows you best!</p>
</div>
<div class="step">
<div class="step-number">4</div>
<h3>Take Your Friend's Quizzes</h3>
<p>You'll be surprised at what you learn about your friends!</p>
</div>
</div>
</section>
<section class="content-section">
<h2>Perfect For</h2>
<div class="use-cases">
<div class="use-case">
<div class="use-case-icon">π₯</div>
<h3>Friend Groups</h3>
<p>Who's the real best friend?</p>
</div>
<div class="use-case">
<div class="use-case-icon">πΌ</div>
<h3>Team Building</h3>
<p>Fun icebreaker for work</p>
</div>
<div class="use-case">
<div class="use-case-icon">π</div>
<h3>Couples</h3>
<p>Test your partner's knowledge</p>
</div>
<div class="use-case">
<div class="use-case-icon">π¨βπ©βπ§βπ¦</div>
<h3>Family</h3>
<p>Great for reunions & holidays</p>
</div>
</div>
</section>
<footer>
<p>Β© 2025 Clementine Health, LLC</p>
<div class="footer-links">
<a href="https://howwellapp.com/privacy-policy">Privacy Policy</a>
how.well.app@gmail.com
</div>
</footer>
</div>
</body>
</html>