-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
92 lines (79 loc) · 4.24 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/index.css">
<link href="https://fonts.googleapis.com/css?family=Heebo|Bree+Serif" rel="stylesheet">
<link rel="icon" href="img/favicon.ico">
<script src="./JS/index.js" async></script>
<title>Water My Plants</title>
</head>
<body>
<div class="container">
<header class="navbar">
<div class="logo">
<!-- <h1>Water My Plants</h1> -->
<img src="img/new-logo.jpg" alt="Water My Plants">
</div>
<div class="buttons">
<img class='actionLink'src="img/menu.png" alt="Options">
<a class="actionLink" href="about.html">Our Team</a>
<a class='actionLink' href="https://water-my-plants-client.herokuapp.com/register">Sign Up</a>
<a class='actionLink' href="https://water-my-plants-client.herokuapp.com/login">Login</a>
<!-- Displaying component reusability: -->
<!-- <a class='actionLink' href="about.html">About Us</a> -->
<!-- <a class='actionLink' href="https://water-my-plants-client.herokuapp.com/login">Login</a>
<a class='actionLink' href="https://water-my-plants-client.herokuapp.com/login">Login</a> -->
</div>
</header>
<div class="dropdown no-show">
<a class='no-show actionLink' href='about.html'>Our Team</a>
<a class='no-show actionLink' href='https://water-my-plants-client.herokuapp.com/register'>Sign Up</a>
<a class='no-show actionLink' href='https://water-my-plants-client.herokuapp.com/login'>Log In</a>
<!-- Displaying component reusability: -->
<!-- <a class='no-show actionLink' href='https://water-my-plants-client.herokuapp.com/login'>Log In</a> -->
</div>
<main class="cta">
<img src="img/aloe-plant.jpg" alt="Aloe Plant">
<div class="cta-text">
<h2>Ever Forget To Water Your Plants?</h2>
<h3>Download the reminder app that keeps your plants flourishing!</h3>
<a href="#start"><button class='learnMore-btn'>Learn More</button></a>
</div>
</main>
<div class="details">
<section>
<img id='start' src="img/logging.jpeg" alt="Log Your Plants">
<div>
<h3>Log Your Plants</h3>
<p>Enter in all the plants you want to keep a close eye on, including their unique watering schedule specific to each plant.</p>
<!-- <p>Add all the plants you want to keep a close eye on, including specific and unique water schedules for each of your favorite plant.</p> -->
</div>
</section>
<section class='opposite'>
<img src="img/notification.jpeg" alt="Receive Notifications">
<div>
<h3>Receive Notifications</h3>
<!-- <p>When your plants are thirsty, you will be reminded with a timely notification to water them</p> -->
<p>When your plants are thirsty, a timely notification will be sent to you based on their individual needs.</p>
</div>
</section>
<section>
<img src="img/dahlia-red-blossom.jpeg" alt="Red Dahlia Flower">
<div>
<h3>Watch Your Plants Thrive</h3>
<p>Rest easy knowing that your plants will always be receiving adequate hydration, and let them grow to their full potential!</p>
</div>
</section>
</div>
<div class="download-links">
<a href="https://www.apple.com/ios/app-store/"><img src="img/apple-button.png" alt="Apple Store"></a>
<a href="https://play.google.com/store?hl=en"><img src="img/google-play-button.png" alt="Google Play Store"></a>
</div>
<footer>
<h6>© 2019 Water My Plants. All rights reserved.</h6>
</footer>
</div> <!-- end container -->
</body>
</html>