-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (32 loc) · 1.23 KB
/
index.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
<!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="css/index.css">
<title>Ecocycle</title>
</head>
<body>
<section class="hero">
<div class="text">
<h2>Welcome to Ecocycle: A project initiated by young environmentalists</h2>
<p></p>Buy recycled products and sell your plastic waste to make a positive impact on the environment.</p>
<a href="login_sign_up.html" class="button">Get Started</a>
</div>
</section>
<section class="features">
<div class="feature">
<h3>Sell Plastic Waste</h3>
<p>Join our marketplace to sell your plastic waste to recycling companies and reduce plastic pollution.</p>
<a href="sell.html" class="button">SELL</a>
</div>
<div class="feature">
<h3>Buy Recycled Products</h3>
<p>Discover a wide range of eco-friendly products made from recycled materials.</p>
<a href="buy.html" class="button">BUY</a>
</div>
</section>
<script src="js/navbar.js"></script>
<script src="js/global_style.js"></script>
</body>
</html>