-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
59 lines (59 loc) · 2.07 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Metadata and links to stylesheets -->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sustainable Aviation Market Made By Tyler J. Bynum</title>
<!-- Link to external CSS file for styling -->
<link rel="stylesheet" href="styles.css">
</head>
<body>
<!-- Header section with navigation bar -->
<header>
<nav>
<ul>
<!-- Navigation links -->
<li><a href="#home">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#services">Services</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</header>
<!-- Home section with main welcome message -->
<section id="home">
<h1>Welcome to Sustainable Aviation Market</h1>
<p>Leading the future of eco-friendly aviation solutions.</p>
<!-- Button for more information -->
<button>Learn More</button>
</section>
<!-- About section with information about the company -->
<section id="about">
<h2>About Us</h2>
<p>We are committed to reducing the environmental impact of air travel through innovative solutions.</p>
</section>
<!-- Services section listing the services provided -->
<section id="services">
<h2>Our Services</h2>
<ul>
<!-- List of services -->
<li>Sustainable Fuel Alternatives</li>
<li>Carbon Footprint Reduction</li>
<li>Eco-Friendly Operations</li>
</ul>
</section>
<!-- Contact section with contact information -->
<section id="contact">
<h2>Contact Us</h2>
<p>Email: [email protected]</p>
<p>Phone: (123) 456-7890</p>
</section>
<!-- Footer section with copyright information -->
<footer>
<p>© 2024 Sustainable Aviation Market</p>
</footer>
<!-- Link to external JavaScript file for interactivity -->
<script src="script.js"></script>
</body>
</html>