-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
337 lines (279 loc) · 16 KB
/
index.html
File metadata and controls
337 lines (279 loc) · 16 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Home - CyberDude Community</title>
<!------------------------- Fevicon Icon of CyberDude ------------------------->
<link rel="icon" href="./assets/fevicon.png" type="image/x-icon">
<!------------------------- Nunito Google Font ------------------------->
<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=Montserrat:wght@100;200;300;500;600&family=Nunito+Sans:opsz,wght@6..12,200;6..12,600;6..12,700&family=Playfair+Display:wght@400;500;600;700&family=Poppins:wght@200;300;500&display=swap"
rel="stylesheet">
<!------------------------- Font Awesome ------------------------->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css">
<!------------------------- Custome CSS ------------------------->
<link rel="stylesheet" href="./style.css">
</head>
<body>
<header>
<div class="container">
<div class="nav-menu">
<div class="logo">
<a href="./index.html"><img src="./assets/cyberdude-logo-light-theme.png" alt="CyberDude Logo"
class="cyberdude-logo"></a>
</div>
<nav>
<ul class="nav-links">
<li><a href="./index.html">Home</a></li>
<li><a href="#sort-by-date">Browse by Dates</a></li>
<li><a href="#sort-by-live">Live coding Sessions</a></li>
<li><a href="https://cyberdudenetworks.com/about" target="_blank">About CyberDude</a></li>
</ul>
</nav>
<i class="fa-solid fa-bars" onclick="showMenu()"></i>
</div>
<!-------------------------------------- Intro Contents -------------------------------------->
<div class="row">
<div class="col-2">
<h1 class="heading"> "Embark on Your Digital Journey: <span class="heading-span">Master in Web
Development from Scratch!</span> "</h1>
<p class="intro-para">
Welcome to the gateway of limitless possibilities in the world of web development! Are you
ready to dive headfirst into the dynamic realms of HTML, CSS, JavaScript, React JS, Node.js,
PHP, and more?
</p>
<div class="btn">
<a href="" class="hero-btn">More Info   <i
class="fa-solid fa-arrow-up-right-from-square"></i> </a>
</div>
</div>
<div class="col-2">
<div class="content-image">
<img src="./assets/web development.png" alt="Web Development Image" class="content-img">
</div>
</div>
</div>
</div>
</header>
<!-------------------------------------------- What Can You Discover? - Section -------------------------------------------->
<section class="learn-things">
<div class="small-header">
<h2 class="content-heading"> What Can You Discover ? </h2>
<!------------------ First Row Heading------------------>
<h3 class="row-heading">1. Front-end Technology</h3>
<!------------------ First Row ------------------>
<div class="row">
<div class="col-5 html-icon">
<a href="./html-section.html" target="_blank" title="Click here to watch HTML Playlist"><img src="./assets/html.png" alt="HTML Icon" class="tech-icons"></a>
<h4 class="sub-heading"> HTML</h4>
</div>
<div class="col-5 css-icon">
<a href="./css-section.html" target="_blank" title="Click here to watch CSS Playlist"><img src="./assets/css-3.png" alt="CSS3 Icon" class="tech-icons"></a>
<h4 class="sub-heading"> CSS3</h4>
</div>
<div class="col-5 js-icon">
<a href="#" target="_blank" title="Click here to watch JavaScript Playlist"><img src="./assets/js.png" alt="JavaScript Icon" class="tech-icons"></a>
<h4 class="sub-heading"> JavaScript</h4>
</div>
<div class="col-5 tailwind-icon">
<a href="#" target="_blank" title="Click here to watch Tailwind CSS Playlist"><img src="./assets/tailwindcss_logo_icon.png" alt="Tailwind CSS Icon" class="tech-icons"></a>
<h4 class="sub-heading"> Tailwind CSS</h4>
</div>
<div class="col-5 react-icon">
<a href="#" target="_blank" title="Click here to watch Tailwind CSS Playlist"><img src="./assets/react.png" alt="React Icon" class="tech-icons"></a>
<h4 class="sub-heading"> React</h4>
</div>
</div>
<!------------------ Second Row Heading------------------>
<h3 class="row-heading">2. Backend Technology</h3>
<!------------------ Second Row ------------------>
<div class="row">
<div class="col-2 logo-size php-icon">
<img src="./assets/php logo.png" alt="PHP Icon" class="tech-icons">
<h4 class="sub-heading"> PHP </h4>
</div>
<div class="col-2 logo-size nodejs-icon">
<img src="./assets/node-js.png " alt="PHP Icon" class="tech-icons">
<h4 class="sub-heading"> Node.js</h4>
</div>
</div>
<!------------------ Third Row Heading------------------>
<h3 class="row-heading">3. Database</h3>
<!------------------ Third Row ------------------>
<div class="row">
<div class="col-2 logo-size mysql-icon">
<img src="./assets/mysql icon.png" alt="My SQL Icon" class="tech-icons">
<h4 class="sub-heading"> My SQL </h4>
</div>
<div class="col-2 logo-size mongoDB-icon">
<img src="./assets/mongoDB.png " alt="Mongo DB Icon" class="tech-icons">
<h4 class="sub-heading"> Mongo DB</h4>
</div>
</div>
<!------------------ Fourth Row Heading------------------>
<h3 class="row-heading">4. Design</h3>
<!------------------ Fourth Row ------------------>
<div class="row design-logos">
<div class="col-3 photoshop-icon">
<img src="./assets/photoshop.png" alt="Photoshop Icon" class="tech-icons">
<h4 class="sub-heading"> Photoshop </h4>
</div>
<div class="col-3 illustrator-icon">
<img src="./assets/adobe-illustrator.png" alt="Photoshop Icon" class="tech-icons">
<h4 class="sub-heading"> Illustrator </h4>
</div>
<div class="col-3 figma-icon">
<img src="./assets/figma.svg" alt="Photoshop Icon" class="tech-icons">
<h4 class="sub-heading"> Figma </h4>
</div>
</div>
</div>
</section>
<!-------------------------------------------- End of What Can You Discover? - Section -------------------------------------------->
<!-------------------------------------------- Browse by Dates - Section -------------------------------------------->
<setion class="sorting" id="sort-by-date">
<div class="small-header">
<h2 class="content-heading"> Browse by Dates </h2>
<h4 class="desc">
You can discover our extensive collection of sessions, <span>thoughtfully organized by date for your
convenience!</span>
</h4>
<div class="center-align">
<div class="row margin-bottom">
<div class="col-2 video-desc effect-left">
<video controls poster="./assets/thumbnail.jpg">
<source src="./assets/video/My Movie4.mp4" type=video/mp4>
</video>
<div class="description">
<h4 class="desc-heading"> Day 4: Build a Portfolio using HTML, CSS - CyberDude Live
Internship | Web Design in Tamil</h4>
</div>
</div>
<div class="col-2 video-desc effect-right">
<video controls poster="./assets/thumbnail.jpg">
<source src="./assets/video/My Movie4.mp4" type=video/mp4>
</video>
<div class="description">
<h4 class="desc-heading"> Day 5: Build a Portfolio using HTML, CSS - CyberDude Live
Internship | Web Design in Tamil</h4>
</div>
</div>
</div>
<div class="btn">
<a href="" class="hero-btn">More videos   <i class="fa-solid fa-arrow-right"></i> </a>
</div>
</div>
</div>
</setion>
<!-------------------------------------------- End of Browse by Dates - Section -------------------------------------------->
<!-------------------------------------------- Live Coding Sessions - Section -------------------------------------------->
<setion class="sorting" id="sort-by-live">
<div class="small-header">
<h2 class="content-heading"> Live Coding Sessions </h2>
<h4 class="desc">
Embark on a journey through our<span>captivating Live Coding Sessions,</span>thoughtfully curated to
ignite your coding passions!
</h4>
<div class="center-align">
<div class="row margin-bottom">
<div class="col-2 video-desc effect-left">
<video controls poster="./assets/thumbnail.jpg">
<source src="./assets/video/My Movie4.mp4" type=video/mp4>
</video>
<div class="description">
<h4 class="desc-heading"> Day 4: Build a Portfolio using HTML, CSS - CyberDude Live
Internship | Web Design in Tamil</h4>
</div>
</div>
<div class="col-2 video-desc effect-right">
<video controls poster="./assets/thumbnail.jpg">
<source src="./assets/video/My Movie4.mp4" type=video/mp4>
</video>
<div class="description">
<h4 class="desc-heading"> Day 5: Build a Portfolio using HTML, CSS - CyberDude Live
Internship | Web Design in Tamil</h4>
</div>
</div>
</div>
<div class="btn">
<a href="" class="hero-btn">More videos   <i class="fa-solid fa-arrow-right"></i> </a>
</div>
</div>
</div>
</setion>
<!-------------------------------------------- End of Live Coding Sessions - Section -------------------------------------------->
<!-------------------------------------------- Footer -------------------------------------------->
<footer>
<div class="container">
<div class="row">
<div class="footer-col-1 address">
<h4> VISIT US TODAY!</h4>
<div class="contact address">
<i class="fa-solid fa-location-dot"></i>
<address>No. 32, Second Street, Ramalingapuram, Kamaraj Nagar, Avadi, Chennai - 71</address>
</div>
<div class="contact phone">
<i class="fa-solid fa-phone"></i><a href="tel:+91 9952913027">(91) 9952913027 8939738801</a>
</div>
<div class="contact mail">
<i class="fa-solid fa-envelope"></i> <a
href="mailto:hello@cyberdudenetworks.com">hello@cyberdudenetworks.com</a>
</div>
</div>
<div class="footer-col-2 about-cdn">
<h4>ABOUT CYBERDUDE</h4>
<p class="about-cyberdude">
CyberDude Networks Pvt. Ltd. is creative product startup company that primary focuses on tech
and product development. <br>
We stimulate the creativity in each and everything that appears to our eye. We love doing it.
</p>
</div>
</div>
<div class="row footer-row">
<div class="social-media-link">
<h4> Engage with us through social media</h4>
<div class="footer-col-social-media">
<div class="social-media">
<!----------------------------- Facebook ------------------------------->
<a href="https://web.facebook.com/CdudeNetworks/?_rdc=1&_rdr"
title="CyberDude | Facebook" target="_blank" class="facebook"> <i class="fa-brands fa-facebook"></i> </a>
<!----------------------------- Instagram ------------------------------->
<a href="https://www.instagram.com/cdudenetworks/" title="CyberDude | Instagram" target="_blank" class="instagram"> <i
class="fa-brands fa-instagram"></i> </a>
</div>
<div class="social-media">
<!----------------------------- YouTube ------------------------------->
<a href="https://www.youtube.com/@CyberDudeNetworks" title="CyberDude | YouTube" target="_blank" target="_blank" class="youtube"> <i
class="fa-brands fa-youtube"></i></a>
<!----------------------------- LinkedIn ------------------------------->
<a href="https://in.linkedin.com/company/cyberdude-networks" title="CyberDude | LinkedIn" target="_blank" class="linkedin"><i
class="fa-brands fa-linkedin"></i></a>
</div>
</div>
</div>
<div class="footer-col-location location">
<h4>Location</h4>
<iframe
src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d62172.224565659424!2d80.04758607017406!3d13.114129426761105!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3a5289d19bef6d25%3A0xe575e8ba16808e64!2sAvadi%2C%20Tamil%20Nadu%2C%20India!5e0!3m2!1sen!2slk!4v1694425978325!5m2!1sen!2slk"
width="600" height="450" style="border:0;" allowfullscreen="" loading="lazy"
referrerpolicy="no-referrer-when-downgrade">
</iframe>
</div>
</div>
</div>
<hr>
<span class="made-by"> Designed By : Mushkir </span>
</div>
</footer>
<!-- End -->
<!-------------------------------------------- JavaScript Files -------------------------------------------->
<!-- Scroll Reveal JS -->
<script src="./js/scrollReveal.js"></script>
<!-- Custom JS -->
<script src="./js/script.js"></script>
</body>
</html>