-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathservices.html
More file actions
55 lines (55 loc) · 2.07 KB
/
services.html
File metadata and controls
55 lines (55 loc) · 2.07 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
<!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="services.css">
<link rel="icon" type="image/x-icon" href="./images/logo.jpg">
<title>Our Services</title>
</head>
<body>
<div class="navbar">
<!-- Logo -->
<a href="index.html" class="logo"></a>
<!-- Navigation Links -->
<div class="nav-options">
<a href="index.html">Home</a>
<a href="about.html">About</a>
<a class="services-nav" href="services.html">Services</a>
<a href="contact.html">Contact</a>
<a class="login" href="login.html"><p>Login</p></a>
</div>
<div class="social-media-handles">
<a class="fb-logo" href="https://www.facebook.com/profile.php?id=61551912003980"
><img src="./images/icons8-facebook-48.png"
/></a>
<a class="insta-logo" href="https://www.instagram.com/shareeeatzz/"
><img src="./images/icons8-instagram-48.png"
/></a>
<a class="linkedin-logo" href="https://www.linkedin.com/company/shareeats"
><img src="./images/icons8-linkedin-48.png"
/></a>
<a class="twitter-logo" href="https://twitter.com/ShareeEatzz"
><img src="./images/icons8-twitter-48.png"
/></a>
</div>
</div>
<div class="container">
<div class="content-container">
<h1>Services</h1>
<div class="services-text">
<p>
The <strong>"ShareEats"</strong> is a website aimed at addressing food waste and
food insecurity in local communities. It connects individuals,
restaurants, grocery stores, and other food providers who have surplus
food with people in need. The website acts as a platform to bridge the
gap between those who have excess food and those who require assistance.
</p>
<p>
This project not only helps reduce food waste but also contributes to
alleviating hunger and promoting social responsibility.
</p>
</div></div>
</div>
</body>
</html>