-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
89 lines (84 loc) · 4.06 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
77
78
79
80
81
82
83
84
85
86
87
88
89
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Our Product | Eco-Tech Start</title>
<link rel="stylesheet" href="styles.css">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap" rel="stylesheet">
<script src="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/js/all.min.js"></script>
</head>
<body>
<header>
<div class="container">
<div class="logo-container">
<img src="img/logo.jpeg" alt="Eco-Tech Start Logo" class="logo">
<h1>Eco-Tech <span class="highlight">Start</span></h1>
</div>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="index.html#features">Features</a></li>
<li><a href="index.html#benefits">Benefits</a></li>
<li><a href="index.html#testimonials">Testimonials</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</div>
</header>
<main>
<section class="about-hero">
<div class="container">
<h2 class="animate-on-scroll">Our Story</h2>
<p class="animate-on-scroll">Discover how we're revolutionizing the tech industry with sustainable solutions.</p>
</div>
</section>
<section class="about-content">
<div class="container">
<div class="about-grid">
<div class="about-item animate-on-scroll">
<i class="fas fa-leaf"></i>
<h3>Our Mission</h3>
<p>We're committed to creating innovative solutions that help businesses thrive while minimizing their ecological footprint.</p>
</div>
<div class="about-item animate-on-scroll">
<i class="fas fa-recycle"></i>
<h3>Sustainable Materials</h3>
<p>We carefully select eco-friendly materials for our products, ensuring sustainability at every step of production.</p>
</div>
<div class="about-item animate-on-scroll">
<i class="fas fa-solar-panel"></i>
<h3>Renewable Energy</h3>
<p>Our operations are powered by 100% renewable energy, reducing our carbon footprint and setting an industry standard.</p>
</div>
<div class="about-item animate-on-scroll">
<i class="fas fa-seedling"></i>
<h3>Environmental Impact</h3>
<p>We offset our carbon emissions through reforestation projects and implement closed-loop recycling programs.</p>
</div>
</div>
</div>
</section>
<section class="cta">
<div class="container">
<h2 class="animate-on-scroll">Join Our Eco-Friendly Revolution</h2>
<p class="animate-on-scroll">Be part of the change and make a positive impact on the environment.</p>
<a href="contact.html" class="button animate-on-scroll">Contact Us <i class="fas fa-arrow-right"></i></a>
</div>
</section>
</main>
<footer>
<div class="container">
<p>© 2023 Eco-Tech Start. All rights reserved.</p>
<div class="social-icons">
<a href="#"><i class="fab fa-facebook"></i></a>
<a href="#"><i class="fab fa-twitter"></i></a>
<a href="#"><i class="fab fa-linkedin"></i></a>
<a href="#"><i class="fab fa-instagram"></i></a>
</div>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>