-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
223 lines (214 loc) Β· 7.61 KB
/
Copy pathindex.html
File metadata and controls
223 lines (214 loc) Β· 7.61 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="Master JavaScript DOM manipulation through interactive coding challenges"
/>
<meta
name="keywords"
content="JavaScript, DOM, Web Development, Coding Challenges"
/>
<meta name="author" content="Sagar Maheshwari" />
<meta property="og:title" content="JavaScript DOM Challenges" />
<meta
property="og:description"
content="Interactive DOM manipulation challenges for web developers"
/>
<meta property="og:type" content="website" />
<meta
property="og:url"
content="https://sagar-1m.github.io/JavaScript-DOM-Challenges/"
/>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link rel="stylesheet" href="styles.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css"
/>
<link rel="icon" href="favicon.ico" type="image/x-icon" />
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />
<script src="script.js" defer></script>
<title>JavaScript DOM Challenges</title>
</head>
<body>
<a href="#main" class="skip-link">Skip to main content</a>
<nav class="navbar" role="navigation" aria-label="Main navigation">
<div class="nav-container">
<a href="./" class="nav-logo"
><i class="fa-brands fa-js"></i> <span>DOM Challenges</span></a
>
<button class="mobile-menu-btn" aria-label="Toggle menu">
<i class="fas fa-bars"></i>
</button>
<ul class="nav-menu">
<li><a href="#challenges" class="nav-link">Challenges</a></li>
<li><a href="#about" class="nav-link">About</a></li>
<li>
<a
href="https://github.com/sagar-1m/JavaScript-DOM-Challenges"
class="nav-link github-link"
target="_blank"
rel="noopener noreferrer"
>
<i class="fa-brands fa-github"></i> Source
</a>
</li>
<li>
<button
id="themeToggle"
class="theme-toggle"
aria-label="Toggle theme"
>
π
</button>
</li>
</ul>
</div>
</nav>
<main id="main">
<section class="hero">
<div class="container text-center">
<h1 class="animated animated-delay-1">JavaScript DOM Mastery</h1>
<p class="hero-subtitle animated animated-delay-2">
Master DOM manipulation through real-world challenges
</p>
<div class="hero-actions animated animated-delay-3">
<a href="#challenges" class="btn btn-primary"
><i class="fas fa-rocket"></i> Start Learning</a
>
<a
href="https://github.com/sagar-1m/JavaScript-DOM-Challenges"
class="btn btn-secondary"
>
<i class="fa-brands fa-github"></i> View Code
</a>
</div>
</div>
</section>
<section id="about" class="about-section">
<div class="container">
<h2 class="animated">Why Choose These Challenges?</h2>
<div class="features-grid">
<article
class="feature-card animated animated-delay-1"
role="article"
>
<i class="fas fa-code"></i>
<h3>Practical Learning</h3>
<p>Learn by building real projects with JavaScript</p>
</article>
<article
class="feature-card animated animated-delay-2"
role="article"
>
<i class="fas fa-graduation-cap"></i>
<h3>Progressive Difficulty</h3>
<p>Start from basics to advanced levels</p>
</article>
<article
class="feature-card animated animated-delay-3"
role="article"
>
<i class="fas fa-laptop-code"></i>
<h3>Interactive Practice</h3>
<p>Hands-on DOM manipulation experience</p>
</article>
</div>
</div>
</section>
<section id="challenges" class="challenges-section">
<div class="container">
<h2 class="animated">Available Challenges</h2>
<div class="challenges-grid">
<a href="./challenge-1/index.html" class="animated"
>Challenge 1: Light Bulb Toggle π‘</a
>
<a href="./challenge-2/index.html" class="animated"
>Challenge 2: Change Text Color π¦</a
>
<a href="./challenge-3/index.html" class="animated"
>Challenge 3: Real-time Form Input Display π</a
>
<a href="./challenge-4/index.html" class="animated"
>Challenge 4: Task Management π§π»ββοΈ</a
>
<a href="./challenge-5/index.html" class="animated"
>Challenge 5: Image Carousel πΌοΈ</a
>
<a href="./challenge-6/index.html" class="animated"
>Challenge 6: Enhanced Clock β°</a
>
<a href="./challenge-7/index.html" class="animated"
>Challenge 7: Accordion πͺ</a
>
<a href="./challenge-8/index.html" class="animated"
>Challenge 8: Simple Shopping Cart π</a
>
<a href="./challenge-9/index.html" class="animated"
>Challenge 9: Sliding Menu πͺ</a
>
<a href="./challenge-10/index.html" class="animated"
>Challenge 10: Interactive Memory Card Game π«</a
>
<a href="./challenge-11/index.html" class="animated"
>Challenge 11: Color Button Creator π¨</a
>
</div>
</div>
</section>
</main>
<footer class="footer">
<div class="container footer-grid">
<div class="footer-profile">
<img
src="https://github.com/sagar-1m.png"
alt="Sagar Maheshwari"
class="author-image"
/>
<div class="author-info">
<h3>Created by Sagar Maheshwari</h3>
<p>
Full Stack Developer passionate about interactive web applications
</p>
<div class="social-links">
<a href="https://github.com/sagar-1m" target="_blank"
><i class="fa-brands fa-github"></i
></a>
<a href="https://x.com/maheshwarisaga4" target="_blank"
><i class="fa-brands fa-x"></i
></a>
<a
href="https://linkedin.com/in/sagar-maheshwari-1m"
target="_blank"
><i class="fa-brands fa-linkedin"></i
></a>
</div>
</div>
</div>
<div class="footer-links">
<h4>Quick Links</h4>
<nav>
<a href="#challenges">Challenges</a>
<a href="#about">About</a>
<a href="https://github.com/sagar-1m/JavaScript-DOM-Challenges"
>Source Code</a
>
</nav>
</div>
</div>
<div class="footer-bottom">
<p>
©
<script>
document.write(new Date().getFullYear());
</script>
JavaScript DOM Challenges. Built with π» by Sagar Maheshwari
</p>
</div>
</footer>
</body>
</html>