-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
90 lines (68 loc) · 2.37 KB
/
Copy pathindex.html
File metadata and controls
90 lines (68 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
<title>App name</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header>
<div class="content">
<h1>App Name</h1>
<nav>
<a href="./problem-and-solution.html">Problem and solution</a>
<a href="./the-app.html">The app</a>
<a href="./index.html" id="currentPage">How it works</a>
</nav>
</div>
</header>
<main class="hero">
<div class="content">
<section class="text">
<h1>Eat Healthy.<br>Save the Planet.</h1>
<a href="#how-it-works"><button>Get started today!</button></a>
</section>
<img alt="Mobile app preview image" src="assets/iphone-test.png" \>
</div>
</main>
<section class ="homeRow">
<h1> Why this app? </h1>
<h2> MAKE SURE THE POOR HAVE FOOD </h2>
<p> People in poor countries are suffering from poverty. <br>
By 2030 one expect 37 countries to be in the worst kind of food condition.
</p>
<h2> AVOID CRIMINALITY </h2>
<p> There are also homeless people in many countries who are struggling financially, and who may not be able to afford food in an honest way. <br> The struggle for food can lead to crime,
</p>
<h2> CREATE STABILITY IN THE WORLD </h2>
<p> Hunger can indirectly create instability in a country, which can potentially create instabilities in the world through terror and mass immigration.
</p>
<h2> HELP THE INDUSTRY FOCUS ON THE RIGHT KIND OF PRODUCTS </h2>
<p> Using this app can give rise to new kind of products that can that are more focused towards utilizing ability to be given to others after being part of a meal, instead of being thrown.
</p>
</section>
<section class="homeRow">
<h1>How it works</h1>
<div class="row">
<div class="column">
<h1>Step 1</h1>
<img src="assets/form.svg">
<h2>Input data</h2>
</div>
<div class="column">
<h1>Step 2</h1>
<img src="assets/dish.svg">
<h2>Plan a Dish</h2>
</div>
<div class="column">
<h1>Step 3</h1>
<img src="assets/donate.svg">
<h2>Donate the leftovers</h2>
</div>
</div>
</section>
<footer>
</footer>
</body>
</html>