-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwebdev.html
More file actions
254 lines (234 loc) · 12.2 KB
/
webdev.html
File metadata and controls
254 lines (234 loc) · 12.2 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
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>iCoder - Web Development</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" 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>
<!-- Introduction -->
<div class="p-4 p-md-5 mb-4 rounded text-body-emphasis bg-body-secondary">
<div class="col-lg-6 px-0">
<h1 class="display-4 fst-italic">Web Development</h1>
<p class="lead my-3">Master modern web development with iCoder. We cover everything from the basics of
<strong>HTML</strong>, <strong>CSS</strong>, and <strong>JavaScript</strong> to advanced frameworks like
<strong>React.js</strong>, <strong>Angular</strong>, <strong>Node.js</strong>, and
<strong>MongoDB</strong>.
Learn through project-based tutorials and real-world examples.
</p>
</div>
</div>
<!-- Roadmap Section -->
<div class="container my-5">
<h3 class="fw-bold text-center mb-4">Web Development Roadmap</h3>
<div class="row row-cols-1 row-cols-md-2 row-cols-lg-3 g-4">
<div class="col">
<div class="card h-100 shadow-sm border-primary">
<div class="card-body">
<h5 class="card-title">Step 1: HTML</h5>
<p class="card-text">Learn the basic structure of webpages using HTML and understand key
elements, forms, and semantic tags.</p>
</div>
</div>
</div>
<div class="col">
<div class="card h-100 shadow-sm border-primary">
<div class="card-body">
<h5 class="card-title">Step 2: CSS</h5>
<p class="card-text">Style your webpages using CSS, master layouts with Flexbox & Grid, and make
designs responsive with media queries.</p>
</div>
</div>
</div>
<div class="col">
<div class="card h-100 shadow-sm border-primary">
<div class="card-body">
<h5 class="card-title">Step 3: JavaScript</h5>
<p class="card-text">Understand JavaScript fundamentals, ES6+, DOM manipulation, and basic
interactivity on your site.</p>
</div>
</div>
</div>
<div class="col">
<div class="card h-100 shadow-sm border-primary">
<div class="card-body">
<h5 class="card-title">Step 4: Frameworks</h5>
<p class="card-text">Learn Bootstrap or TailwindCSS for UI styling and explore React.js, Vue.js,
or Angular for frontend development.</p>
</div>
</div>
</div>
<div class="col">
<div class="card h-100 shadow-sm border-primary">
<div class="card-body">
<h5 class="card-title">Step 5: Backend</h5>
<p class="card-text">Move to backend with Node.js + Express.js or Django, learn APIs, and
understand how servers work.</p>
</div>
</div>
</div>
<div class="col">
<div class="card h-100 shadow-sm border-primary">
<div class="card-body">
<h5 class="card-title">Step 6: Databases</h5>
<p class="card-text">Learn SQL (MySQL, PostgreSQL) or NoSQL (MongoDB), and connect databases
with backend APIs.</p>
</div>
</div>
</div>
<div class="col">
<div class="card h-100 shadow-sm border-primary">
<div class="card-body">
<h5 class="card-title">Step 7: Git & GitHub</h5>
<p class="card-text">Master version control using Git, push projects to GitHub, and understand
branching and pull requests.</p>
</div>
</div>
</div>
<div class="col">
<div class="card h-100 shadow-sm border-primary">
<div class="card-body">
<h5 class="card-title">Step 8: Deployment</h5>
<p class="card-text">Deploy your projects using Netlify, Vercel, or GitHub Pages and showcase
your work professionally.</p>
</div>
</div>
</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>