-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
52 lines (52 loc) · 2 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
<!DOCTYPE html>
<html>
<head>
<title>Forks Calculators</title>
<link rel="stylesheet" href="forks.css">
<script src="forks.js"></script>
</head>
<body>
<div class="forksInteractionContainer diabetesCalculator">
If
<div class="incrementDecrementContainer">
<button id="decrementEmployees">-</button>
<div class="relative-parent">
<span class="size-calibration">1</span>
<input class="autosized-input" id="diabetesEmployees" value="1" autocomplete="off"/>
</div>
<button id="incrementEmployees">+</button>
</div>
team member prevents or reverses diabetes for one year employers save
<span class="forksInteractionStandout" id="diabetesTotalSavings"></span>
</div>
<div style="height: 24px"></div>
<div class="forksInteractionContainer c02andTreesCalculator">
If
<div class="incrementDecrementContainer">
<button id="decrementTreesEmployees">-</button>
<div class="relative-parent">
<span class="size-calibration">10</span>
<input class="autosized-input" id="treesEmployees" value="10" autocomplete="off"/>
</div>
<button id="incrementTreesEmployees">+</button>
</div>
employees replace a meat based diet with a plant-based diet
<div class="incrementDecrementContainer">
<button id="decrementDays">-</button>
<div class="relative-parent">
<span class="size-calibration">1</span>
<input class="autosized-input" id="daysPerWeek" value="1" autocomplete="off" disabled/>
</div>
<button id="incrementDays">+</button>
</div>
day per week
<span class="forksInteractionStandout" id="totalCO2eSaved"></span>
of CO<sub>2</sub>e can be saved annually.
</div>
<div class="forksInteractionContainer">
<span>That's like planting</span>
<span class="forksInteractionStandout" id="treesPlanted"></span>
<span>trees!</span>
</div>
</body>
</html>