-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
70 lines (66 loc) · 2.35 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Welcome to ETL</title>
<link rel="stylesheet" href="./assets/styles/styles.css">
</head>
<body>
<header>
<nav>
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</header>
<section id="home" class="hero">
<div class="content">
<h1>Welcome to ETL</h1>
<p>Empowering the next generation of developers through hands-on projects.</p>
<a href="#about" class="cta">Get Started</a>
</div>
<div class="artifact spaceship">
<img src="./assets/images/spaceship-d.svg" alt="Spaceship">
</div>
</section>
<section id="about">
<div class="about-content">
<h2>About ETL</h2>
<p>ETL is an open-source learning community where you can learn, grow, and contribute to real-world projects. We connect beginners with mentors and real-world problems to solve, providing a supportive environment for learning and growth.</p>
</div>
<div class="artifact group">
<img src="./assets/images/group.svg" alt="Group">
</div>
<div class="artifact fireball">
<img src="./assets/images/fireball.svg" alt="Group">
</div>
</section>
<section id="projects">
<h2>Featured Projects</h2>
<div class="project-list">
<div class="project-item">
<h3>Project 1</h3>
<p>A brief description of Project 1.</p>
</div>
<div class="project-item">
<h3>Project 2</h3>
<p>A brief description of Project 2.</p>
</div>
<div class="project-item">
<h3>Project 3</h3>
<p>A brief description of Project 3.</p>
</div>
</div>
<div class="solar-system">
<img src="./assets/images/solar-system.svg" alt="solar-system">
</div>
</section>
<footer>
<p>© 2024 ETL Learning Community. All rights reserved.</p>
</footer>
</body>
</html>