-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
212 lines (203 loc) · 11.3 KB
/
about.html
File metadata and controls
212 lines (203 loc) · 11.3 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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>iCoder - About Us</title>
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.6/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-4Q6Gf2aSP4eDXB8Miphtr37CMZZQ5oXLH2yaXMJ2w8e2ZtHTl7GptT4jmndRuHDT" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css">
</head>
<body>
<!-- Navbar -->
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
<div class="container-fluid">
<a class="navbar-brand" href="#">iCoder</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse"
data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false"
aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
<li class="nav-item"><a class="nav-link" href="index.html">Home</a></li>
<li class="nav-item"><a class="nav-link active" href="about.html">About</a></li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" role="button" data-bs-toggle="dropdown"
aria-expanded="false">Topics</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="webdev.html">Web Development</a></li>
<li><a class="dropdown-item" href="datasci.html">Data Science</a></li>
<li>
<hr class="dropdown-divider">
</li>
<li><a class="dropdown-item" href="write.html">Write For Us</a></li>
</ul>
</li>
<li class="nav-item"><a class="nav-link" href="contact.html">Contact Us</a></li>
</ul>
<form class="col-12 col-lg-auto mb-3 mb-lg-0 me-lg-3" role="search">
<input type="search" class="form-control form-control-dark" placeholder="Search..."
aria-label="Search">
</form>
<div class="text-end">
<button type="button" class="btn btn-outline-light me-2" data-bs-toggle="modal"
data-bs-target="#loginModal">Login</button>
<button type="button" class="btn btn-warning" data-bs-toggle="modal"
data-bs-target="#signupModal">Sign-up</button>
</div>
</div>
</div>
</nav>
<!-- Login Modal -->
<div class="modal fade" id="loginModal" tabindex="-1" aria-labelledby="loginModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h1 class="modal-title fs-5" id="loginModalLabel">Login to iCoder</h1>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
<form>
<div class="mb-3">
<label for="exampleInputEmail1" class="form-label">Email address</label>
<input type="email" class="form-control" id="exampleInputEmail1"
aria-describedby="emailHelp">
</div>
<div class="mb-3">
<label for="exampleInputPassword1" class="form-label">Password</label>
<input type="password" class="form-control" id="exampleInputPassword1">
</div>
<div class="mb-3 form-check">
<input type="checkbox" class="form-check-input" id="exampleCheck1">
<label class="form-check-label" for="exampleCheck1">Remember Me</label>
</div>
<button type="submit" class="btn btn-primary">Submit</button>
</form>
</div>
</div>
</div>
</div>
<!-- Sign-Up Modal -->
<div class="modal fade" id="signupModal" tabindex="-1" aria-labelledby="signupModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h1 class="modal-title fs-5" id="signupModalLabel">Create an iCoder Account</h1>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
<form>
<div class="mb-3">
<label for="exampleInputEmail1" class="form-label">Email address</label>
<input type="email" class="form-control" id="exampleInputEmail1"
aria-describedby="emailHelp">
</div>
<div class="mb-3">
<label for="exampleInputPassword1" class="form-label">Password</label>
<input type="password" class="form-control" id="exampleInputPassword1">
</div>
<div class="mb-3">
<label for="exampleInputPassword1" class="form-label">Confirm Password</label>
<input type="password" class="form-control" id="exampleInputPassword1">
</div>
<button type="submit" class="btn btn-primary">Create Account</button>
</form>
</div>
</div>
</div>
</div>
<div class="container my-5">
<div class="row featurette d-flex justify-content-center align-items-center">
<div class="col-md-7">
<h2 class="featurette-heading fw-normal lh-1">About iCoder - <span class="text-body-secondary">Your
Coding Companion.</span></h2>
<p class="lead">iCoder is a learning and resource platform dedicated to coding, technology, and modern
development practices. Whether you're a complete beginner or an experienced programmer, iCoder
offers structured tutorials, insightful blogs, and up-to-date tech news to guide your journey.</p>
</div>
<div class="col-md-5">
<img src="images/about1.png" class="img-fluid mx-auto d-block" alt="About iCoder Image" width="350">
</div>
</div>
</div>
<div class="container my-5">
<hr class="featurette-divider">
<div class="row featurette d-flex justify-content-center align-items-center">
<div class="col-md-7 order-md-2">
<h2 class="featurette-heading fw-normal lh-1">Web Development - <span class="text-body-secondary">Learn,
Build, Innovate.</span></h2>
<p class="lead">Master the latest web development technologies including HTML, CSS, JavaScript, and
advanced frameworks like React and Angular. We simplify complex topics with easy explanations,
project-based learning, and real-world examples.</p>
</div>
<div class="col-md-5 mt-5">
<img src="images/about2.png" class="img-fluid mx-auto d-block" alt="About iCoder Image" width="350">
</div>
</div>
</div>
<div class="container my-5">
<hr class="featurette-divider">
<div class="row featurette d-flex justify-content-center align-items-center">
<div class="col-md-7">
<h2 class="featurette-heading fw-normal lh-1">Data Science & AI - <span class="text-body-secondary">The
Future is Data.</span></h2>
<p class="lead">Dive into the fascinating world of Data Science, Machine Learning, and Artificial
Intelligence. From Python tutorials to hands-on projects in data analysis and predictive modeling,
iCoder makes data learning practical and accessible.</p>
</div>
<div class="col-md-5 mt-5">
<img src="images/about3.png" class="img-fluid mx-auto d-block" alt="About iCoder Image" width="350">
</div>
</div>
</div>
<div class="container my-5">
<hr class="featurette-divider">
<div class="row featurette d-flex justify-content-center align-items-center">
<div class="col-md-7 order-md-2">
<h2 class="featurette-heading fw-normal lh-1">Why Choose
<span class="text-body-secondary">iCoder?</span>
</h2>
<p class="lead">At iCoder, our goal is to provide quality, beginner-friendly, and industry-relevant content. We focus on clear explanations, hands-on coding examples, and constant updates to keep you ahead in the rapidly changing tech landscape. Join our growing community and stay connected to the latest in technology!
</p>
</div>
<div class="col-md-5 mt-5">
<img src="images/about4.png" class="img-fluid mx-auto d-block" alt="About iCoder Image" width="350">
</div>
</div>
</div>
<!-- Footer -->
<div class="container">
<footer class="d-flex flex-wrap justify-content-between align-items-center py-3 my-4 border-top">
<div class="col-md-4 d-flex align-items-center">
<a class="mb-3 me-2 mb-md-0 text-body-secondary text-decoration-none lh-1" aria-label="Bootstrap">
<img src="favicon.ico" width="24" height="24">
</a>
<span class="mb-3 mb-md-0 text-body-secondary">© 2025 Company, Inc</span>
</div>
<ul class="nav col-md-4 justify-content-end list-unstyled d-flex">
<li class="ms-3">
<a class="text-body-secondary" href="#" aria-label="Instagram">
<i class="bi bi-instagram" width="24" height="24">
<use xlink:href="#instagram"></use>
</i>
</a>
</li>
<li class="ms-3">
<a class="text-body-secondary" href="#" aria-label="Facebook">
<i class="bi bi-facebook" width="24" height="24">
<use xlink:href="#facebook"></use>
</i>
</a>
</li>
</ul>
</footer>
</div>
<!-- Bootstrap JS Bundle -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.6/dist/js/bootstrap.bundle.min.js"
integrity="sha384-j1CDi7MgGQ12Z7Qab0qlWQ/Qqz24Gc6BM0thvEMVjHnfYGF0rmFCozFSxQBxwHKO"
crossorigin="anonymous"></script>
</body>
</html>