-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
88 lines (82 loc) · 2.86 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<title>Landing Page</title>
</head>
<body>
<header>
<a class="header-name" href="#">A Nice Website</a>
<div class="header-link">
<a href="#">About</a>
<a href="#">Learn More</a>
<a href="#">Contact</a>
</div>
</header>
<section id="main-section">
<div class="main-content">
<div class="main-title">Welcome to Our Platform</div>
<div class="main-description">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Rerum quod
eius nulla optio et Join us and explore endless possibilities to grow,
learn, and succeed!
</div>
<button class="main-button-sign-up">Sign Up</button>
</div>
<div class="main-image">
<img src="./images/welcome-image.jpg" alt="People working together" />
</div>
</section>
<section id="feature-section">
<div class="feature-container">
<img class="feature-image" src="images/feature1.jpg" alt="Feature 1" />
<div class="feature-description">
Feature 1: Learn from experts with hands-on tutorials.
</div>
</div>
<div class="feature-container">
<img class="feature-image" src="images/feature2.jpg" alt="Feature 2" />
<div class="feature-description">
Feature 2: Access a wide variety of learning resources.
</div>
</div>
<div class="feature-container">
<img class="feature-image" src="images/feature3.jpg" alt="Feature 3" />
<div class="feature-description">
Feature 3: Join a community of learners and grow together.
</div>
</div>
<div class="feature-container">
<img class="feature-image" src="images/feature4.jpg" alt="Feature 4" />
<div class="feature-description">
Feature 4: Receive personalized learning recommendations.
</div>
</div>
</section>
<section id="quote-section">
<div class="quote-content">
"Education is the most powerful weapon which you can use to change the
world."
</div>
<div class="quote-author">- Nelson Mandela</div>
</section>
<section id="cta-section">
<div class="cta-container">
<div class="cta-content-container">
<div class="cta-title">Ready to Take the Next Step?</div>
<div class="cta-content">
Start your learning journey today and unlock your full potential.
</div>
</div>
<button class="end-button-sign-up">Sign Up</button>
</div>
</section>
<footer>
<div class="footer-copyright">
© 2024 My Company. All Rights Reserved.
</div>
</footer>
</body>
</html>