-
Notifications
You must be signed in to change notification settings - Fork 74
Expand file tree
/
Copy pathindex.html
More file actions
150 lines (142 loc) · 5.1 KB
/
index.html
File metadata and controls
150 lines (142 loc) · 5.1 KB
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
149
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>codeX100 - Learn Programming</title>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=Poppins&display=swap" rel="stylesheet">
<link
rel="stylesheet"href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"
/>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<!-- Navigation Bar -->
<nav class="navbar">
<div class="logo">
<a href="index.html">
<img src="./Images/codex100-logo.png" alt="codeX100 logo">
</a>
</div>
<div class="hamburger" id="hamburger">
<i class="fas fa-bars"></i>
</div>
<ul class="nav-links">
<li><a href="#">Home</a></li>
<li><a href="course.html">Courses</a></li>
<li><a href="#">Notes</a></li>
<li><a href="IDE.html">IDE</a></li>
<li><a href="#">Contact Us</a></li>
<li><a href="#" class="btn">Sign Up</a></li>
<li><a href="#" class="btn">Login</a></li>
</ul>
</nav>
<!-- Main Section -->
<section class="hero-section">
<h2>Welcome to codeX100</h2>
<p>Master programming with live classes and curated content</p>
<a href="#" class="btn-primary">Explore Courses</a>
</section>
<!-- Course Recommendations Section -->
<section class="course-recommendations">
<h2>Your Courses</h2>
<div class="course-list">
<!-- Placeholder for purchased courses -->
<p>You haven't bought any courses yet.</p>
</div>
<h3>Recommended Courses</h3>
<div class="recommended-courses">
<!-- Example courses with thumbnails -->
<div class="course-card">
<img src="./Images/c++-thumbnail.jpg" alt="Basics of C++" class="course-thumbnail">
<div class="course-info">
<h4>Basics of C++</h4>
<p>Learn the fundamentals of C++ programming.</p>
<button class="btn-secondary">View Course</button>
</div>
</div>
<div class="course-card">
<img src="./Images/java-thumbnail.jpg" alt="Data Structures in Java" class="course-thumbnail">
<div class="course-info">
<h4>Data Structures in Java</h4>
<p>Master DSA with Java from basics to advanced.</p>
<button class="btn-secondary">View Course</button>
</div>
</div>
<div class="course-card">
<img src="./Images/c++-thumbnail.jpg" alt="Basics of C++" class="course-thumbnail">
<div class="course-info">
<h4>Basics of C++</h4>
<p>Learn the fundamentals of C++ programming.</p>
<button class="btn-secondary">View Course</button>
</div>
</div>
<div class="course-card">
<img src="./Images/java-thumbnail.jpg" alt="Data Structures in Java" class="course-thumbnail">
<div class="course-info">
<h4>Data Structures in Java</h4>
<p>Master DSA with Java from basics to advanced.</p>
<button class="btn-secondary">View Course</button>
</div>
</div>
<div class="testimonial-section">
<div class="testimonial">
<p>"This platform has greatly improved my skills!"</p>
<h4>- John Doe</h4>
</div>
<div class="testimonial">
<p>"A rewarding and fun way to learn."</p>
<h4>- Jane Smith</h4>
</div>
</div>
</div>
</section>
<footer class="site-footer">
<div class="footer-container">
<div class="footer-section">
<h3>Important Links</h3>
<ul>
<li><a href="/about">About Us</a></li>
<li><a href="/privacy">Privacy Policy</a></li>
<li><a href="/terms">Terms of Service</a></li>
</ul>
</div>
<div class="footer-section">
<h3>Connect With Us</h3>
<div class="social-icons">
<a
href="https://linkedin.com/"
target="_blank"
rel="noopener noreferrer"
class="social-icon linkedin"
>
<i class="fab fa-linkedin"></i>
</a>
<a
href="https://instagram.com/"
target="_blank"
rel="noopener noreferrer"
class="social-icon instagram"
>
<i class="fab fa-instagram"></i>
</a>
<a
href="https://youtube.com/"
target="_blank"
rel="noopener noreferrer"
class="social-icon youtube"
>
<i class="fab fa-youtube"></i>
</a>
</div>
</div>
</div>
<div class="footer-bottom">
<p>© 2024 codeX100. All rights reserved.</p>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>