-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
69 lines (66 loc) · 2.25 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>scrolling.me</title>
<link rel="stylesheet" href="style.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css"
/>
<script src="scripts.js" defer></script>
<meta content="scrolling.me" property="og:title" />
<meta
content="a reminder of how screen time affects your lifespan"
property="og:description"
/>
<meta content="https://scrolling.me" property="og:url" />
</head>
<body>
<button id="theme-toggle" aria-label="Toggle Theme">
<i class="fas fa-sun"></i>
</button>
<div class="container">
<header>
<h1 class="main-title">scrolling.me</h1>
<p>a reminder of how screen time impacts your life</p>
</header>
<section>
<h2>Calculate Your Screen Time's Impact</h2>
<label for="screenTime"
>Enter your daily average screen time (in hours):</label
>
<input
type="number"
id="screenTime"
min="0"
max="24"
step="0.1"
aria-label="Daily average screen time in hours"
/>
<button id="calculateButton">Calculate</button>
<div id="result" class="result"></div>
</section>
<section>
<h2>Why I Created This Website</h2>
<p>
During a recent holiday with my friends, I noticed something
different. We were spending significantly less time together than last
holiday because many of them were constantly on apps like TikTok,
doom-scrolling through content.
</p>
<p>
These holidays won't last forever, and I want to make the most of our
time together. Unfortunately, apps designed to capture our attention
have taken away precious moments of real connection and shared
experiences.
</p>
<p class="highlight">
So please, reflect on your screen time. Reclaim your time and your
life, think about who you've lost time with, is it worth it?
</p>
</section>
</div>
</body>
</html>