-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
67 lines (58 loc) · 3.07 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="style.css">
<title> All About Composting</title>
</head>
<body>
<main>
<header>
<img class="header-image" src="Composting Logo.png" alt="composting" />
<h1>All About Composting</h1>
</header>
<section class="left">
<p>Composting is a wonderful way to help reduce food waste and create great gardening soil for your own family. </p>
<p>Food that ends up in landfills undergoes anaerobic decomposition, which means it just rots in the absence of oxygen.
Instead of turning into valuable organic material, it emanates methane, a greenhouse gas which contributes to global warming.
If we compost our kitchen scraps and garden waste, not only we keep these materials out of landfills, but we can also use them
with great benefit for ourselves!</p>
<p>Compost is an amazing fertilizer for your garden. It saves you time and money: you don't have to buy expensive synthetic fertilizers
or spend hours making your own. By adding a balanced amount of "brown" and "green" materials to your pile, you let nature do the rest of the work.
</p>
</section>
<img id="bigPic" src="Composting .png" alt="compost pile">
<br>
<table>
<tr><th class="green">Green Materials</th><th class="brown">Brown Materials</th></tr>
<tr><td>fruit peel</td> <td>leaves</td></tr>
<tr><td>coffee grounds</td> <td>shredded cardboard</td></tr>
<tr><td>fresh grass</td> <td>dry grass</td></tr>
<tr><td>vegetable scraps</td> <td>hay</td></tr>
<tr><td>egg shells</td><td>newspapers</td></tr>
<tr><td><img src="Greens.png" alt="green composting materials"> </td>
<td><img src="Browns.png" alt="brown materials for composting"></td></tr>
</table>
<img id="line" src="Line.png" alt="line">
<img id="girl"src="Composting girl.png" alt="a girl with gardening tools">
<section class="tips"><h2>Tips</h2>
<details false>
<summary> Add 3 parts "brown"-1 part "green".</summary>
<p>"Brown" materials are rich in carbon, while "green" materials contain more nitrogen.
Add approximately 1 part of "greens" to each 3-4 parts of "browns" for effective decomposition.</p>
</details>
<details false>
<summary>Add water.</summary>
<p>It's best when your pile contains about as much water as a wrung-out sponge. Water
your pile if you see it drying out in the hot summer months.</p>
</details>
<details false>
<summary>Air the pile.</summary>
<p>Turn the pile to ensure air circulation and to prevent clumping.</p>
</details>
</section>
</main>
<footer>Visit our blog <a href="http://www.mintandmoment.com" target="_blank"> Mint and Moment</a> for more information.</footer>
</body>
</html>