-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
76 lines (76 loc) · 2.92 KB
/
about.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>About FoodAr</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css?family=Lemonada&display=swap" rel="stylesheet">
</head>
<body>
<div class="container">
<header class="about-header">
<div class="logo">
<a href="./index.html"><img src="./img/Logo.PNG" /></a>
</div>
</header>
<div class="how">
<h2>How It works</h2>
<hr/>
</div>
<br/>
<div class="register">
<h3>Register for an Acoount</h3>
<p>The first thing you need to do is <a href="./register.html">Register</a> for an account.</p>
<p>After registering you will be able to submit requests for pickup and have your food delivered to your door.</p>
</div>
<br/>
<div class="order">
<h3>ORDER YOUR FOOD</h3>
<p>Place an order for food from a local restaurant and the system will automatically find the nearest driver at the best cost.</p>
</div>
<br/>
<div class="request">
<h3>Confirm Your Request</h3>
<p>Before any request is submitted, you have the chance to review it and make any cancellations.</p>
</div>
</div>
<footer>
<div class="footer-container">
<div class="site-nav box">
<h5>Site Navigation</h5>
<hr>
<ul>
<li>Home</li>
<li>Regitser</li>
<li>About</li>
</ul>
</div>
<div class="legal box">
<h5>Legal</h5>
<hr>
<ul>
<li>Terms and Conditions</li>
<li>Privacy Policy</li>
<li>about Us</li>
</ul>
</div>
<div class="contact box">
<h5>Contact Us</h5>
<hr>
<ul>
<li>F T I</li>
<li>Tel: 888-400-9000</li>
<li>Help</li>
</ul>
</div>
</div>
<div class="copyright">
<p>© 2019. All Rights Reserved</p>
<p>Version 1.0.0</p>
</div>
</footer>
</body>
</html>