-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRoadmap.html
357 lines (316 loc) · 7.92 KB
/
Roadmap.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
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
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>HTML Learning Roadmap</title>
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&family=Roboto+Mono&display=swap" rel="stylesheet">
<!-- AOS Animation CSS -->
<link href="https://unpkg.com/[email protected]/dist/aos.css" rel="stylesheet">
<style>
/* Reset */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
/* Loading Spinner */
#loader {
position: fixed;
width: 100%;
height: 100vh;
background: #d2b48c;
display: flex;
align-items: center;
justify-content: center;
z-index: 9999;
}
.spinner {
border: 6px solid #ddd;
border-top: 6px solid #8b4513;
border-radius: 50%;
width: 50px;
height: 50px;
animation: spin 1s linear infinite;
}
@keyframes spin {
0% {transform: rotate(0deg);}
100% {transform: rotate(360deg);}
}
/* Body */
body {
font-family: 'Poppins', sans-serif;
background: linear-gradient(rgba(210,180,140,0.4), rgba(210,180,140,0.3)), url('Ai.png') no-repeat center center fixed;
background-size: cover;
color: #4b2e05;
min-height: 100vh;
scroll-behavior: smooth;
padding-top: 70px;
}
/* Navbar */
nav {
position: fixed;
top: 0;
left: 0;
width: 100%;
background: rgba(128,38,19,0.3);
padding: 15px 30px;
display: flex;
justify-content: center;
align-items: center;
z-index: 1000;
box-shadow: 0 4px 6px rgba(0,0,0,0.3);
}
nav h1 {
font-size: 1.8rem;
color: #fff8f0;
font-weight: 600;
font-family: 'Roboto Mono', monospace;
}
/* Main Heading */
.main-title {
text-align: center;
font-size: 3rem;
margin: 20px 0;
font-weight: 600;
animation: fadeSlide 1s ease forwards;
}
@keyframes fadeSlide {
from {
opacity: 0;
transform: translateY(-30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
/* Sections */
.roadmap-section {
background: rgba(255,248,240,0.7);
padding: 25px;
margin: 30px auto;
border-radius: 20px;
max-width: 1000px;
backdrop-filter: blur(6px);
transition: all 0.4s ease;
border: 2px solid transparent;
}
.roadmap-section:hover {
transform: translateY(-5px);
border: 2px solid #8b4513;
box-shadow: 0 0 20px #8b4513;
}
h2 {
font-size: 1.8rem;
margin-bottom: 15px;
color: #8b4513;
font-family: 'Roboto Mono', monospace;
}
ul {
list-style-type: decimal;
padding-left: 20px;
line-height: 1.8;
}
ul li {
margin-bottom: 10px;
font-size: 1rem;
}
/* Footer */
footer {
text-align: center;
padding: 20px;
margin-top: 40px;
color: #5c4033;
font-size: 0.9rem;
background: rgba(139,23,98,0.4);
}
/* Responsive */
@media (max-width: 768px) {
.main-title {
font-size: 2rem;
}
h2 {
font-size: 1.5rem;
}
.roadmap-section {
padding: 20px;
}
}
</style>
</head>
<body onload="hideLoader()">
<!-- Loader -->
<div id="loader">
<div class="spinner"></div>
</div>
<!-- Navbar -->
<nav>
<h1>HTML Learning</h1>
</nav>
<!-- Main Heading -->
<h1 class="main-title"></h1>
<!-- Sections (Roadmap) -->
<a href="Introhtml.html" style="text-decoration: none; color: inherit;">
<div id="Introhtml" class="roadmap-section" data-aos="fade-up">
<h2>1. HTML Introduction</h2>
<ul>
<li>HTML kya hai?</li>
<li>HTML ka Itihaas aur Evolution</li>
<li>HTML vs HTML5</li>
<li>Website mein HTML ka use</li>
</ul>
</div>
</a>
<a href="2html.html" style="text-decoration: none; color: inherit;">
<div id="BasicStructure" class="roadmap-section" data-aos="fade-up">
<h2>2. Basic Structure of HTML</h2>
<ul>
<li>HTML Document Structure</li>
<li>DOCTYPE Declaration</li>
<li>Head aur Body Tags</li>
<li>Comments ka use</li>
</ul>
</div>
</a>
<a href="3html.html" style="text-decoration: none; color: inherit;">
<div class="roadmap-section" data-aos="fade-up">
<h2>3. HTML Tags Overview</h2>
<ul>
<li>Tags kya hote hain?</li>
<li>Types of Tags</li>
<li>Self-closing Tags</li>
<li>Nesting aur Case Sensitivity</li>
</ul>
</div>
</a>
<a href="4html.html" style="text-decoration: none; color: inherit;">
<div class="roadmap-section" data-aos="fade-up">
<h2>4. Text Formatting Tags</h2>
<ul>
<li>Headings (h1-h6)</li>
<li>Paragraphs (p)</li>
<li>Line Break (br) aur Horizontal Line (hr)</li>
<li>Bold, Italic, Underline</li>
<li>Superscript, Subscript</li>
</ul>
</div>
</a>
<div class="roadmap-section" data-aos="fade-up">
<h2>5. HTML Lists</h2>
<ul>
<li>Unordered List (ul)</li>
<li>Ordered List (ol)</li>
<li>Description List (dl)</li>
</ul>
</div>
<div class="roadmap-section" data-aos="fade-up">
<h2>6. HTML Links</h2>
<ul>
<li>Anchor Tag (a)</li>
<li>Internal & External Links</li>
<li>Attributes: href, target</li>
</ul>
</div>
<div class="roadmap-section" data-aos="fade-up">
<h2>7. HTML Images</h2>
<ul>
<li>Adding Images</li>
<li>Attributes: src, alt</li>
<li>Image Linking</li>
</ul>
</div>
<div class="roadmap-section" data-aos="fade-up">
<h2>8. HTML Tables</h2>
<ul>
<li>Basic Table Structure</li>
<li>Table Borders, Padding</li>
<li>Merging Cells</li>
</ul>
</div>
<div class="roadmap-section" data-aos="fade-up">
<h2>9. HTML Forms</h2>
<ul>
<li>Form Structure</li>
<li>Input Fields Types</li>
<li>Validation Basics</li>
</ul>
</div>
<div class="roadmap-section" data-aos="fade-up">
<h2>10. Multimedia in HTML</h2>
<ul>
<li>Audio and Video Tags</li>
<li>Attributes: controls, autoplay, loop</li>
<li>Embedding YouTube Videos</li>
</ul>
</div>
<div class="roadmap-section" data-aos="fade-up">
<h2>11. Semantic Elements</h2>
<ul>
<li>Importance of Semantics</li>
<li>Common Semantic Tags</li>
</ul>
</div>
<div class="roadmap-section" data-aos="fade-up">
<h2>12. HTML APIs Introduction</h2>
<ul>
<li>Geolocation</li>
<li>Drag and Drop</li>
<li>Web Storage</li>
</ul>
</div>
<div class="roadmap-section" data-aos="fade-up">
<h2>13. HTML Graphics</h2>
<ul>
<li>Canvas Basics</li>
<li>SVG Introduction</li>
</ul>
</div>
<div class="roadmap-section" data-aos="fade-up">
<h2>14. HTML Entities</h2>
<ul>
<li>Special Characters</li>
<li>Common Entities</li>
</ul>
</div>
<div class="roadmap-section" data-aos="fade-up">
<h2>15. File Paths in HTML</h2>
<ul>
<li>Absolute vs Relative Path</li>
<li>Best Practices</li>
</ul>
</div>
<div class="roadmap-section" data-aos="fade-up">
<h2>16. Best Practices in HTML</h2>
<ul>
<li>Clean Coding</li>
<li>Accessibility</li>
<li>SEO Friendly HTML</li>
</ul>
</div>
<div class="roadmap-section" data-aos="fade-up">
<h2>17. Final Project</h2>
<ul>
<li>Building a Complete Website</li>
<li>Responsive Design</li>
<li>HTML Validation</li>
</ul>
</div>
<!-- Footer -->
<footer>
Copyright © 2025 | All Rights Reserved
</footer>
<!-- AOS Animation Script -->
<script src="https://unpkg.com/[email protected]/dist/aos.js"></script>
<script>
AOS.init({
duration: 1000,
once: true,
});
function hideLoader() {
document.getElementById('loader').style.display = 'none';
}
</script>
</body>
</html>