-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
52 lines (52 loc) · 2.37 KB
/
index.html
File metadata and controls
52 lines (52 loc) · 2.37 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Plant Care</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."
<html lang ="en-US">
</head>
<body id = "home">
<header> <h1> Plant Care </h1> </header>
<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><u>Introduction</u></h3>
<p> This site is meant to be informative on the different types if household or indoor plants and how to care for them. However, it is all information accumulated by a <i>highschooler</i> and not necessarily a specialist. I am paticularly knowledgeable on succulents - but otherwise my information is bookish rather than experienced. </p>
<h3><u>Resources</u></h3>
<p>Resources used for all information on this site, from every page.
<h4>Succulents/Desert Plants</h4>
<ul>
<li> <a href = "https://www.britannica.com/plant/succulent">Succulent Definiton</a></li>
<li><a href = "https://www.dictionary.com/browse/cactus?s=t">Cactus Definition </a> </li>
<li> <a href = "https://www.deucecitieshenhouse.com/2013/02/its-succulent-time-again.html"> Potting succulents </a></li>
</ul>
<h4>Easy Plants</h4>
<ul>
<li><a href = "https://www.lifehack.org/390369/10-indoor-plants-that-are-easy-take-care">Lists of Easy Indoor Plants </a></li>
<li><a href = "https://www.goodhousekeeping.com/home/gardening/advice/g1285/hard-to-kill-plants/?slide=16">Lists of Easy Indoor Plants </a></li>
</ul>
<h4>Advanced Plants</h4>
<ul>
<li><a href = "https://www.gardenista.com/posts/worst-houseplants/">The hardest idoor plants to grow</a></li>
</ul>
</div>
</div>
<script src="script.js"></script>
</body>
</html>