-
Notifications
You must be signed in to change notification settings - Fork 8
/
home.html
50 lines (35 loc) · 1.25 KB
/
home.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
<!DOCTYPE html>
<html>
<head>
<title>Landing Page</title>
<link rel="stylesheet" type="text/css" href= "{{ url_for('static', filename='styles.css')}}">
</head>
<div class="header">
<h1>EasyCart</h1>
</div>
<body>
<div class="links">
<a href="#">Why EasyCart?</a>
<a href="#">About Us</a>
<a href="#">Filler</a>
<a href="#" style="float:right">Sign up</a>
</div>
<!-- Interactive recipe search -->
<div class="leftcolumn">
<div class="recipesearch">
<p1>Get started</p1>
<input type="text" placeholder="Enter your recipe!">
</div>
<div class="recipesearch">
<a href="#">-Click here for a new recipe!-</a>
</div>
</div>
<!-- Value proposition -->
<div class="rightcolumn">
<div class="valuesection">
<h2>Recipes made easy</h2>
<p>Taking the time to create a shopping list can be time consuming in the working world where time is money. When it comes to groceries, staying healthy while saving time can be difficult, but there is an easier way to save time and reach your goals with EasyCart. EasyCart is an easy to use application that will create the shopping list that you need. Start now with recipes made easy on EasyCart.</p>
</div>
</div>
</body>
</html>