-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy paththe-app.html
More file actions
63 lines (54 loc) · 2.24 KB
/
the-app.html
File metadata and controls
63 lines (54 loc) · 2.24 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<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" id="currentPage">The app</a>
<a href="./index.html">How it works</a>
</nav>
</div>
</header>
<h2 id="AppToTop">Our App Solution</h2>
<section class="content">
<ul>
<li>To use our app you will have to create an account.</li>
<li>Then you choose either producer or consumer. Which you can change as you please.</li>
<li>Below you can see a preview of what the app will look like for both the producer and consumer.</li>
</ul>
<hr>
</section>
<section class="content">
<p id="producer" style="text-decoration: underline; font-weight: bold;";>PRODUCER</p>
</section>
<section>
<img class="col-small-31 col-tall-100 img-resize" src="assets/app_producer1.svg" alt="Input section of the app for the producer.">
<img class="col-small-31 col-tall-100 img-resize" src="assets/app_producer2.svg" alt="Input food types, storing date.">
<img class="col-small-31 col-tall-100 img-resize" src="assets/app_producer3.svg" alt="Input pick-up date, start and end time.">
</section>
<section class="content">
<p id="consumer" style="text-decoration: underline; font-weight: bold;";>CONSUMER</p>
</section>
<section>
<img class="col-small-31 col-tall-100 img-resize" src="assets/app_consumer1.svg" alt="Input section of the app for the consumer.">
<img class="col-small-31 col-tall-100 img-resize" src="assets/app_consumer2.svg" alt="Health feedback based on input data.">
<img class="col-small-31 col-tall-100 img-resize" src="assets/app_consumer3.svg" alt="Payment and pick-up of food.">
</section>
<section>
<!-- Tag should perhaps be changed to nav later
Right now it would get the wrong properties from CSS
-->
<p class="button-toTop ol-small-10 col-tall-31"><a href ="#AppToTop" class="button-toTop">TO TOP</a></p>
</section>
<footer>
</footer>
</body>
</html>