-
Notifications
You must be signed in to change notification settings - Fork 37
/
index.html
168 lines (168 loc) · 5.13 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width,initial-scale=1.0" />
<link rel="icon" href="/favicon.png" />
<title>Jake Quits</title>
<meta
name="description"
content="jake quit nicotine. this is helping them along the way."
/>
<meta itemprop="name" content="Jake Quits" />
<meta
itemprop="description"
content="jake quit nicotine. this is helping them along the way."
/>
<meta name="og:title" content="Jake Quits" />
<meta
name="og:description"
content="jake quit nicotine. this is helping them along the way."
/>
<meta name="og:url" content="https://www.jakequits.com" />
<meta property="og:image" content="https://www.jakequits.com/image.png" />
<meta name="og:site_name" content="Jake Quits" />
<meta name="og:type" content="website" />
<meta id="theme" name="theme-color" content="black" />
<link rel="stylesheet" href="app.css" />
</head>
<body>
<div id="app">
<header class="container">
<h1><span class="name">jake</span> quits.</h1>
<p>
<span class="name">jake</span>
quit nicotine. this is helping them along the way.
</p>
</header>
<div class="container flex">
<div class="progress" fraction="seconds">
<div class="left"></div>
<div class="right">
<h2></h2>
<h3>Seconds</h3>
</div>
</div>
<div class="progress" fraction="minutes">
<div class="left"></div>
<div class="right">
<h2></h2>
<h3>Minutes</h3>
</div>
</div>
<div class="progress" fraction="hours">
<div class="left"></div>
<div class="right">
<h2></h2>
<h3>Hours</h3>
</div>
</div>
<div class="progress" fraction="days">
<div class="left"></div>
<div class="right">
<h2></h2>
<h3>Days</h3>
</div>
</div>
</div>
<div class="container flex">
<div class="progress" fraction="weeks">
<div class="left"></div>
<div class="right">
<h2></h2>
<h3>Weeks</h3>
</div>
</div>
<div class="progress" fraction="months">
<div class="left"></div>
<div class="right">
<h2></h2>
<h3>Months</h3>
</div>
</div>
<div class="progress" fraction="years">
<div class="left"></div>
<div class="right">
<h2></h2>
<h3>Years</h3>
</div>
</div>
<div class="progress dark">
<div class="right">
<h2>
<span><span id="dollars"></span></span
><small>.<span id="cents"></span></small>
</h2>
<h3>Saved</h3>
</div>
</div>
</div>
<div class="container">
<div class="timeline">
<div>
<h3>1 Hour</h3>
<p>Heart rate drops.</p>
</div>
<div>
<h3>12 Hours</h3>
<p>The carbon monoxide level in your blood drops to normal.</p>
</div>
<div>
<h3>2 Weeks to 3 Months</h3>
<p>
Heart attack risk begins to drop. Lung function begins to improve.
</p>
</div>
<div>
<h3>1 to 9 Months</h3>
<p>Coughing and shortness of breath decrease.</p>
</div>
<div>
<h3>1 Year</h3>
<p>
Added risk of coronary heart disease is half that of a smoker's.
</p>
</div>
<div>
<h3>5 Years</h3>
<p>Stroke risk is reduced to that of a nonsmoker’s.</p>
</div>
<div>
<h3>10 Years</h3>
<p>
Lung cancer death rate is about half that of a smoker’s. Related
cancer risks decrease.
</p>
</div>
<div>
<h3>15 Years</h3>
<p>
Risk of coronary heart disease is back to that of a nonsmoker’s.
</p>
</div>
<p style="text-align: center; width: 100%">
<small
><a
href="https://www.cdc.gov/tobacco/data_statistics/sgr/2004/posters/20mins/index.htm"
>cdc.gov</a
>
|
<a href="https://github.com/ja-k-e/jake-quits">GitHub</a>
|
<a href="https://jake.fun">jake.fun</a>
</small>
</p>
<p style="text-align: center; width: 100%; opacity: 0.5">
<a
href="?n=NAME&d=2005-01-01T12:00&h=FFF&s=10&c=$"
title="n: name, d: datetime, h: hex color, s: per day spend, c: currency"
><small>?n=NAME&d=2005-01-01T12:00&h=FFF&s=10&c=$</small></a
>
</p>
</div>
</div>
</div>
<script src="app.js"></script>
</body>
</html>