-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
97 lines (90 loc) · 3.77 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
90
91
92
93
94
95
96
97
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Us - 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="index.html#home">Home</a></li>
<li><a href="about.html">About Us</a></li>
<li><a href="index.html#how-it-works">How It Works</a></li>
<li><a href="index.html#projects">Projects</a></li>
<li><a href="index.html#blog">Blog</a></li>
<li><a href="index.html#contact">Contact</a></li>
<li><a href="index.html#login" class="login-button">Login</a></li>
</ul>
</nav>
</div>
</header>
<section id="about-us">
<div class="container">
<h1>About Us</h1>
<p>Welcome to our Green Energy Trading Platform. Our mission is to create a sustainable future by facilitating the trading of surplus solar energy and promoting the use of renewable resources.</p>
<h2>Our Mission</h2>
<p>To empower individuals and communities to generate, trade, and consume renewable energy, fostering a greener planet for future generations.</p>
<h2>Our Vision</h2>
<p>To be a global leader in renewable energy trading, making sustainable energy accessible and beneficial for all.</p>
<h2>Our Team</h2>
<div class="team">
<div class="team-member">
<img src="team-member-1.jpg" alt="Team Member 1">
<h3>John Doe</h3>
<p>CEO & Founder</p>
</div>
<div class="team-member">
<img src="team-member-2.jpg" alt="Team Member 2">
<h3>Jane Smith</h3>
<p>CTO</p>
</div>
<div class="team-member">
<img src="team-member-3.jpg" alt="Team Member 3">
<h3>Bob Johnson</h3>
<p>COO</p>
</div>
</div>
<h2>Our Values</h2>
<ul>
<li>Sustainability</li>
<li>Innovation</li>
<li>Community</li>
<li>Transparency</li>
<li>Integrity</li>
</ul>
</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>