-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
148 lines (138 loc) · 5.74 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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Green Energy Trading Platform</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<div class="container">
<img src="logo.png" alt="Company Logo" class="logo">
<nav>
<div class="menu-icon" id="menu-icon">
<div></div>
<div></div>
<div></div>
</div>
<ul id="nav-links">
<li><a href="#home">Home</a></li>
<li><a href="about.html">About Us</a></li>
<li><a href="#how-it-works">How It Works</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#blog">Blog</a></li>
<li><a href="#contact">Contact</a></li>
<li><a href="#login" class="login-button">Login</a></li>
</ul>
</nav>
</div>
</header>
<section id="hero">
<div class="container">
<h1>Empowering Sustainable Energy Trading</h1>
<p>Trade surplus solar energy effortlessly and earn Green Energy Points.</p>
<a href="#get-started" class="cta-button">Get Started</a>
<a href="#learn-more" class="cta-button">Learn More</a>
</div>
</section>
<section id="green-energy-vs-carbon-credits">
<div class="container">
<h2>Green Energy Points vs. Carbon Credits</h2>
<div class="comparison">
<div class="comparison-item">
<h3>Green Energy Points</h3>
<ul>
<li>Earned by producing and consuming renewable energy.</li>
<li>Can be traded or redeemed for sustainable products and services.</li>
<li>Incentivizes local, immediate green energy usage.</li>
</ul>
</div>
<div class="comparison-item">
<h3>Carbon Credits</h3>
<ul>
<li>Allowances for emitting a certain amount of CO2.</li>
<li>Can be traded in a carbon market.</li>
<li>Aimed at reducing overall carbon footprint globally.</li>
</ul>
</div>
</div>
</div>
</section>
<section id="facts">
<div class="container">
<h2>Why Green Energy Matters</h2>
<div class="facts">
<div class="fact-item">
<h3>Positive Impact</h3>
<ul>
<li>Solar energy is the most abundant energy resource on Earth – 173,000 terawatts of solar energy strike the Earth continuously, which is more than 10,000 times the world's total energy use.</li>
<li>Wind power could provide 35% of the world’s electricity by 2050, reducing carbon emissions by up to 5.6 gigatons annually.</li>
</ul>
</div>
<div class="fact-item">
<h3>Scary Facts</h3>
<ul>
<li>The world is on track to warm by 3°C by 2100, which could lead to catastrophic climate impacts.</li>
<li>Over 1 million species are at risk of extinction due to climate change.</li>
</ul>
</div>
</div>
</div>
</section>
<section id="how-it-works">
<div class="container">
<h2>How Our Platform Works</h2>
<div class="steps">
<div class="step">
<h3>1. Generate surplus solar energy.</h3>
</div>
<div class="step">
<h3>2. Trade your surplus energy on our platform.</h3>
</div>
<div class="step">
<h3>3. Earn Green Energy Points.</h3>
</div>
<div class="step">
<h3>4. Redeem points for sustainable rewards.</h3>
</div>
</div>
</div>
</section>
<section id="home">
<div class="container">
<h1>Welcome to Green Energy Trading Platform</h1>
<p>Transforming the future of energy trading.</p>
<a href="#how-it-works" class="scroll-down">Scroll Down</a>
</div>
</section>
<section id="how-it-works">
<div class="container">
<h2>How It Works</h2>
<!-- Content -->
</div>
</section>
<footer>
<div class="container">
<div class="footer-links">
<a href="#privacy">Privacy Policy</a>
<a href="#terms">Terms of Service</a>
</div>
<div class="contact-info">
<p>Email: [email protected]</p>
<p>Phone: +123 456 7890</p>
<div class="social-media">
<a href="#facebook"><img src="facebook.png" alt="Facebook"></a>
<a href="#twitter"><img src="twitter.png" alt="Twitter"></a>
<a href="#linkedin"><img src="linkedin.png" alt="LinkedIn"></a>
</div>
</div>
<div class="newsletter">
<input type="email" placeholder="Subscribe to our newsletter">
<button>Subscribe</button>
</div>
</div>
</footer>
<script src="scripts.js"></script>
</body>
</html>