-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
115 lines (108 loc) · 5.48 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
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Eco-friendly Tech Start | Sustainable Innovation</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-friendly Tech Start Logo" class="logo">
<h1>Eco-Tech <span class="highlight">Start</span></h1>
</div>
<nav>
<ul>
<li><a href="#hero">Home</a></li>
<li><a href="#features">Features</a></li>
<li><a href="#benefits">Benefits</a></li>
<li><a href="#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 id="hero" class="hero">
<div class="container">
<h2 class="animate-on-scroll">Revolutionize Your Business with Sustainable Technology</h2>
<p class="animate-on-scroll">Embrace the future of eco-friendly innovation and reduce your carbon footprint</p>
<a href="#cta" class="button animate-on-scroll">Learn More <i class="fas fa-leaf"></i></a>
</div>
</section>
<section id="features" class="features">
<div class="container">
<h2 class="section-title animate-on-scroll">Product Features</h2>
<div class="feature-grid">
<div class="feature-item animate-on-scroll">
<i class="fas fa-solar-panel"></i>
<h3>Energy-efficient Hardware</h3>
<p>Designed for longevity and minimal energy consumption</p>
</div>
<div class="feature-item animate-on-scroll">
<i class="fas fa-cloud"></i>
<h3>Carbon-neutral Cloud</h3>
<p>Services powered by 100% renewable energy</p>
</div>
<div class="feature-item animate-on-scroll">
<i class="fas fa-brain"></i>
<h3>AI-driven Optimization</h3>
<p>Intelligent systems for reduced resource consumption</p>
</div>
<div class="feature-item animate-on-scroll">
<i class="fas fa-recycle"></i>
<h3>Eco-friendly Packaging</h3>
<p>Sustainable materials and responsible disposal programs</p>
</div>
</div>
</div>
</section>
<section id="benefits" class="benefits">
<div class="container">
<h2 class="section-title animate-on-scroll">Benefits</h2>
<ul class="benefit-list">
<li class="animate-on-scroll"><i class="fas fa-check"></i> Reduce your company's carbon footprint</li>
<li class="animate-on-scroll"><i class="fas fa-check"></i> Lower energy costs and improve efficiency</li>
<li class="animate-on-scroll"><i class="fas fa-check"></i> Enhance your brand image as an eco-conscious business</li>
<li class="animate-on-scroll"><i class="fas fa-check"></i> Contribute to a sustainable future for our planet</li>
</ul>
</div>
</section>
<section id="testimonials" class="testimonials">
<div class="container">
<h2 class="section-title animate-on-scroll">What Our Customers Say</h2>
<div class="testimonial-card animate-on-scroll">
<blockquote>
"Eco-friendly Tech Start has transformed our business operations. We've reduced our energy consumption by 40% and our employees love being part of a sustainable initiative."
</blockquote>
<cite>- Jane Doe, CEO of GreenCorp</cite>
</div>
</div>
</section>
<section id="cta" class="cta">
<div class="container">
<h2 class="animate-on-scroll">Ready to Make a Difference?</h2>
<p class="animate-on-scroll">Join the eco-friendly tech revolution and start your sustainable journey today!</p>
<a href="#" class="button animate-on-scroll">Get Started Now <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>