-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhome.php
More file actions
78 lines (56 loc) · 3.36 KB
/
Copy pathhome.php
File metadata and controls
78 lines (56 loc) · 3.36 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
<?php
session_start();
include 'validateSesh.php';
?>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link href="https://fonts.googleapis.com/css?family=Roboto:400,900" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Roboto+Slab:100,300,400" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Satisfy" rel="stylesheet">
<link rel="stylesheet" href="css/home.css">
<title>Home</title>
<style>
</style>
</head>
<body>
<!--Nav bar elements to be included in pages -->
<?php include 'nav.php';?>
<section>
<h2 id="header-impact">Hello <?php echo($_SESSION['username']);?> </h2>
<p id="header-text">Our world has a finite amount of resources that are being depleted daily and without preemptive action,
we will fail to sustain these resources for future generations. Freshwater is one of these finite resources that is becoming scarce,
yet the United States still uses more water per capita than anywhere else in the world. In order to maintain sustainable usage, Smardens is
at the forefront of this solution by marrying technology and environmental sustainability.
</p>
</section>
<section class="rightalign">
<h2 class="rightalignHeader">Smart Gardening</h2>
<p>In order to address this issue, The Resilient Smart Garden Project aims to build a user-friendly system to monitor crops and maximize irrigation performance, combining principles in both efficiency and permaculture.
Our automated watering system will collect data to help suggest methods to maximize the growth and yield while minimizing irrigation, time, and costs. It consists of small and light-weight hardware that is powered by solar energy and uses drip irrigation methods.
The developed system will utilize an Arduino board along with multiple sensors to read the water levels in the garden environment and log that data to a database.
The amount of watering depends on the humidity in the soil along with the amount of light and the temperature of the environment. Automated efficiency checks will then suggest watering schedules based on the layout of the garden and the specific plants within it.
</p>
</section>
<section id="post-header">
<div class="img-by-txt">
<div>
<h2 class="contentHeader">Conserve</h2>
<p class="contentText">
In a drought-prone Southern California, being able to implement a system like this is pivotal for the conservation of one of our most vital resources, water.
Users from all levels of gardening skill will be able to implement this system and successfully grow a wide variety of vegetation and crops while doing their part to conserve the most amount of water as possible while gardening.
</p>
</div>
<div>
<img id="contentimg" src="image/hands.jpg">
</div>
</div>
<button id ="quiz"><a href="quiz.html">Quiz</a></button>
</section>
<footer>
<p>contact:iscottgrogin@student.csulb.edu</p>
</footer>
</body>
</html>