Skip to content

Commit

Permalink
fix links
Browse files Browse the repository at this point in the history
  • Loading branch information
LiamSwayne committed Mar 9, 2024
1 parent 938eb2f commit 3400b1e
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions site/calculator.html
Original file line number Diff line number Diff line change
Expand Up @@ -61,26 +61,23 @@ <h1>CO2 Emissions Calculator</h1>
<!-- National Forest Foundation -->
<div class="tree-slider">
<input type="checkbox" id="organization1Checkbox" onclick="toggleOrganization('organization1')" />
<label for="organization1Checkbox">National Forest Foundation: $1 per tree</label>
<a href="https://www.nationalforests.org/tree-planting-programs" target="_blank">Learn More</a>
<label for="organization1Checkbox"> <a href="https://www.nationalforests.org/tree-planting-programs" target="_blank">National Forest Foundation</a>: $1 per tree</label>
<input type="range" id="organization1" min="0" max="1000" step="1" value="0" aria-labelledby="organization1Label" disabled />
<output id="organization1Output">0 trees</output>
</div>

<!-- #TeamTrees -->
<div class="tree-slider">
<input type="checkbox" id="organization2Checkbox" onclick="toggleOrganization('organization2')" />
<label for="organization2Checkbox">#TeamTrees: $1 per tree</label>
<a href="https://teamtrees.org/" target="_blank">Learn More</a>
<label for="organization2Checkbox"><a href="https://teamtrees.org/" target="_blank">#TeamTrees</a>: $1 per tree</label>
<input type="range" id="organization2" min="0" max="1000" step="1" value="0" aria-labelledby="organization2Label" disabled />
<output id="organization2Output">0 trees</output>
</div>

<!-- One Tree Planted -->
<div class="tree-slider">
<input type="checkbox" id="organization3Checkbox" onclick="toggleOrganization('organization3')" />
<label for="organization3Checkbox">One Tree Planted: $1 per tree</label>
<a href="https://onetreeplanted.org/products/plant-trees" target="_blank">Learn More</a>
<label for="organization3Checkbox"><a href="https://onetreeplanted.org/products/plant-trees" target="_blank">One Tree Planted</a>: $1 per tree</label>
<input type="range" id="organization3" min="0" max="1000" step="1" value="0" aria-labelledby="organization3Label" disabled />
<output id="organization3Output">0 trees</output>
</div>
Expand Down

0 comments on commit 3400b1e

Please sign in to comment.