-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadvancedPlants.html
More file actions
127 lines (125 loc) · 5.27 KB
/
advancedPlants.html
File metadata and controls
127 lines (125 loc) · 5.27 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Plant Care - Advanced Plants</title>
<link href="style.css" rel="stylesheet" type="text/css" />
<meta name = "author" content = "Grace Hudgens">
<meta name = "description" content = "A guide to caring for various types of household plants - the section for caring for more advanced plants."
<html lang ="en-US">
</head>
<body id = "advancedPlants">
<h2>Advanced Plants</h2>
<div class = "row">
<!-- navigation panel -->
<div class = "column">
<nav>
<ul id = "nav">
<li id = "nav"><a href = "index.html">Home</a></li>
<li id = "nav"><a href = "succulents.html">Succulents/Desert Plants</a></li>
<li id = "nav"><a href = "easyPlants.html">Easy Plants</a></li>
<li id = "nav"><a href = "advancedPlants.html">Advanced Plants</a></li>
<li id = "nav"><a href = "viewerInteractions.html">Feedback Options </a></li>
</ul>
</nav>
</div>
<!-- information column -->
<div class = "column information">
<h3>Some of the hardest plants to grow: </h3>
<p>
<ul>
<li><b>Orchids</b> - needs just the right combination of humidity and watering to thrive.</li>
<li><b>Maidenhair Fern</b> - a light mist, a humid climate, some time spent outside, a little splash of sunlight, this plant desires to be papmpered. </li>
<li><b>Fiddle Leaf Fig Tree</b> - humidity, indirect sunlight, moist soil, infrequent waterings, these can all be life savers... and sometimes it decides to die anyways </li>
<li><b>African Violets</b> - again! humidity. I have seen some people place this plant on an easy to care for list... any plant that requires that much humidity is hard to care for (unless, of couse, you actually live in the climate required for it.) </li>
<li><b>String of Pearls Succulent</b> - most succulents are fairly forgiving, this one decides it doesn't like your face and dies to get away from you. This requires the opposite touch of the others in this list - ensure that the soil is <em>completely</em> dry before you water it again. </li>
<li><b>Air Plant</b> - this plant grows in rock instead of soil, it should have a lot of indirect sunlight and be misted for watering depending on the humitidty in the room.</li>
<li><b>Staghorn Fern</b> - I had not known this was a thing before I stumbled upon it in my reasearch. It is quite literally a plant that you hang on your wall like a deer head. Give it a thurough watering each week- let it dry before hanging it back on your wall (<i>so cool!</i>)</li>
<li><b>Calathea</b> - high humidity and bright to indirect sun. Consider placing it with other plants.</li>
</ul>
</p>
<p>I have only cared for two of these plants: string of pearls and orchids. The orchid died when it was passed to my grandmother - and the string of pears decided it hated my face.</p>
<p>It is important for many harder to take care of plants that you water on a schedule, and keep track of said schedule.</p>
<p>Below is an example of my watering schedule for my succulents. I have long since forgotten many of their actual names and instead call them by their nicknames - some of which are friends of mine</p>
<h4>Week of 09/06 watering schedule</h4>
<table>
<thead>
<td> </td>
<th>Sunday</th>
<th>Monday</th>
<th>Tuesday</th>
<th>Wednesday</th>
<th>Thursday</th>
<th>Friday</th>
<th>Saturday</th>
</thead>
<tbody>
<tr>
<td>Kimberly (Bear Paw)</td>
<td> </td>
<td> </td>
<td> </td>
<td>X</td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td>String of Buttons and Moonstone Plant</td>
<td> </td>
<td>X</td>
<td> </td>
<td> </td>
<td> </td>
<td>X;</td>
<td> </td>
</tr>
<tr>
<td>Zebra Plant</td>
<td> </td>
<td>X</td>
<td> </td>
<td> </td>
<td> </td>
<td>X</td>
<td> </td>
</tr>
<tr>
<td>Apollo (and 2 others) (Moon Cactus)</td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td>Next Week</td>
</tr>
<tr>
<td>Shannon (I legitimatlly have no idea what this plant is)</td>
<td> </td>
<td>X</td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<td>Martin (also not certain of species)</td>
<td>X</td>
<td> </td>
<td> </td>
<td> </td>
<td>X</td>
<td> </td>
<td> </td>
</tr>
</tbody>
</table>
</div>
</div>
<img id = "orchid" src = "https://p0.pikist.com/photos/931/884/orchid-flower-plant-orchids-purple.jpg" alt = "A purple orchid flower">
<img id = "fern" src = "https://upload.wikimedia.org/wikipedia/commons/0/02/Northern_Maidenhair_Fern.jpg" alt = "A green featherly plant called a maidenhair fern">
<img id = "africanViolets" src = "https://upload.wikimedia.org/wikipedia/commons/3/3c/African_Violet.jpg" alt = "An image of a small potted plant with blue flowers">
</body>
</html>