-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
82 lines (79 loc) · 2.88 KB
/
index.html
File metadata and controls
82 lines (79 loc) · 2.88 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Roots</title>
<link href="style.css" rel="stylesheet" type="text/css" />
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Merriweather:wght@300&family=Montserrat:wght@300&display=swap" rel="stylesheet">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Merriweather:wght@300;400;700&display=swap" rel="stylesheet">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Open+Sans&display=swap" rel="stylesheet">
</head>
<body>
<div class="header">
<ul>
<li><img src="Images/logo.png" class = "logoImg"/></li>
<li class = "headings"><a href="">Home</a></li>
<li class = "headings" ><a href="#getstarted">Get Started</a></li>
<li class = "headings" ><a href="#aboutus">About Us</a></li>
<li class = "headings" ><a href="#contact">Contact</a></li>
<li class = "headings" ><a href="#">Sign In</a></li>
</ul>
</div>
<div class="body">
<table>
<tr>
<td style="width: 55%"> <img src = "Images/Plant.png" alt = "Plant Image" id = "plant"> </td>
<td style="width:45%;">
<h1 class = "moto"> Start planting your roots. </h1>
</br>
<a id = "buttonNext" href = "https://roots.lakshmi2021.repl.co/options.html"> Grow Your Garden </a>
</td>
<tr>
</table>
</div>
</br>
</br>
<div id = "getstarted">
<h1 id = "title"> Gardening Made Easy </h1>
</br>
</br>
<table>
<tr>
<td style="width: 80%;">
<p id = "pTag2">
Growing your own produce is very rewarding, not just for you but for the environment as well.
</p>
<p id = "pTag2">
Roots aims to provide an easier, methodical approach to gardening. Research proves that food production accounts for 13.7 billion tons of CO2, and agriculture takes up 38% of the global land surface.
</p>
<p id = "pTag2">
By making gardening skills more accessible, we hope to encourage eating locally.
</p></td>
<td>
<img src="Images/home_Page_Image.png" alt="Watering spinach leaves image" id = "Water"></td>
</div>
</tr>
</table>
</br>
</br>
</br>
<footer>
<div id = "contact">
<h1> Contact </h1>
<form action='mailto:costumerservice@Root.com' method='post' enctype="multipart/form-data">
<input type="name" placeholder="Your name" required>
<input type="email" placeholder="Your email" required>
<textarea placeholder='Write your message here' required></textarea>
<button>Send Message</button>
</form>
<p class = "pFooter"> Copyright © 2021 by The Root Team. All rights reserved.</p>
</div>
</footer>
<script src="script.js">
</script>
</body>
</html>