-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
266 lines (240 loc) · 12.1 KB
/
index.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
<!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>Learn to code online - CodeWithHarry</title>
<link rel="icon" href="logo-blue.webp" type="image/x-icon">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="responsive.css">
<link rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@48,400,1,0" />
</head>
<body>
<!-- NAVBAR CONTAINER STARTS HERE -->
<div class="main-navbar sticky">
<nav id="navbar">
<div class="header">
<div class="logo">
<a href="/">CodeWithHarry</a>
</div>
<ul>
<div class="dropdown" id="dropdown-link">
<div class="text">Menu</div>
<div class="drop-icon"><ion-icon name="caret-down-outline"></ion-icon></div>
</div>
<li><a class="hover-underline-animation" href="#">Home</a></li>
<li><a class="hover-underline-animation" href="#">Courses</a></li>
<li><a class="hover-underline-animation" href="#">Tutorial</a></li>
<li><a class="hover-underline-animation" href="#">Blog</a></li>
<li><a class="hover-underline-animation" href="#">Notes</a></li>
<li><a class="hover-underline-animation" href="#">Contact</a></li>
<li><a class="hover-underline-animation" href="#">My Gear</a></li>
<li><a class="hover-underline-animation" href="#">Work With Us</a></li>
<div class="theme-switch" id="theme"><ion-icon name="contrast-outline"></ion-icon></div>
<div class="btn">
<input type="submit" value="Login">
</div>
<div class="btn">
<input type="submit" value="Signup">
</div>
</ul>
</div>
<hr>
<!-- tutorial-links -->
<div class="tut-links">
<div class="icon">
<a href="/"><ion-icon name="home"></ion-icon></a>
</div>
<ul>
<li><a class="hover-underline-animation" href="#">html</a></li>
<li><a class="hover-underline-animation" href="#">css</a></li>
<li><a class="hover-underline-animation" href="#">js</a></li>
<li><a class="hover-underline-animation" href="#">c</a></li>
<li><a class="hover-underline-animation" href="#">c++</a></li>
<li><a class="hover-underline-animation" href="#">java</a></li>
<li><a class="hover-underline-animation" href="#">python</a></li>
<li><a class="hover-underline-animation" href="#">php</a></li>
<li><a class="hover-underline-animation" href="#">React js</a></li>
</ul>
<div class="icon">
<a href=""><ion-icon name="search"></ion-icon></a>
</div>
</div>
</nav>
</div>
<div class="dropdown-menu ">
<ul class="dropdown-list" id="dropdown">
<li class="dropdown-list-item"><a href="#">Home</a></li>
<li class="dropdown-list-item"><a href="#">Courses</a></li>
<li class="dropdown-list-item sub-drop-menu" id="sub-dropdown"><a href="#">Tutorial<ion-icon
name="caret-down-outline"></ion-icon></a></li>
<ul class="sub-dropdown-list">
<li><a class="" href="#">html</a></li>
<li><a class="" href="#">css</a></li>
<li><a class="" href="#">js</a></li>
<li><a class="" href="#">c</a></li>
<li><a class="" href="#">c++</a></li>
<li><a class="" href="#">java</a></li>
<li><a class="" href="#">python</a></li>
<li><a class="" href="#">php</a></li>
<li><a class="" href="#">React js</a></li>
</ul>
<li class="dropdown-list-item"><a href="#">Blog</a></li>
<li class="dropdown-list-item"><a href="#">Notes</a></li>
<li class="dropdown-list-item"><a href="#">Contact</a></li>
<li class="dropdown-list-item"><a href="#">My Gear</a></li>
<li class="dropdown-list-item" style="padding-bottom: 1rem;"><a href="#">Work With Us</a></li>
</ul>
</div>
<!-- NAVBAR CONTAINER ENDS HERE -->
<!-- SECTION-1 STARTS HERE -->
<div class="section-1 container">
<div id="sub-section-1">
<h2 class="welcome">
Welcome to <span>CodeWithHarry</span>
</h2>
<p>Confused on which course to take? I have got you covered. Browse courses and find out the best course
for
you. Its free! Code With Harry is my attempt to teach basics and those coding techniques to people
in
short time which took me ages to learn.</p>
<div class="section-button">
<button class="btn-2" id="free-course">Free Courses</button>
<button class="btn-2" id="explore-blog">Explore Blog</button>
</div>
</div>
<div id="section-img">
<!-- <img src="image/image.jpg" alt="" width="100%" height="100%"> -->
</div>
</div>
<!-- SECTION-1 ENDS HERE -->
<!-- SECTION-2 STARTS HERE -->
<div class="section-2 container">
<h2 class="main-heading">Recommended Courses</h2>
<div class="card-container">
<!-- CARD-1 STARTS FROM HERE -->
<div class="card-wrapper">
<div class="cards" id="card-1">
<div id="card1-thumbnail" class="thumbnail">
<img src="https://www.codewithharry.com/_next/image/?url=https%3A%2F%2Fcwh-full-next-space.fra1.digitaloceanspaces.com%2Fvideoseries%2Fpython-100-days-of-code-1%2F7wnove7K-ZQ-HD.jpg&w=384&q=75"
alt="python course thumbnail">
</div>
<div class="contentpara">
<span class="s-h">Free Course</span>
<div class="lng-hdig">Python Tutorials - 100 Days of Code</div>
<p>Python is one of the most demanded programming languages in the job market. Surprisingly,
it
is equally easy to learn and master Python. Let's commit our 100 days of code to python!
</p>
</div>
<div class="startwatching">
<span>Start Watching</span>
</div>
</div>
</div>
<!-- CARD-1 ENDS HERE -->
<!-- CARD-2 STARTS FROM HERE -->
<div class="card-wrapper">
<div class="cards" id="card-2">
<div id="card2-thumbnail" class="thumbnail">
<img src="https://www.codewithharry.com/_next/image/?url=https%3A%2F%2Fcwh-full-next-space.fra1.digitaloceanspaces.com%2Fvideoseries%2Fultimate-js-tutorial-hindi-1%2FJS-Thumb.jpg&w=384&q=75"
alt="javascript thumbnail">
</div>
<div class="contentpara">
<span class="s-h">Free Course</span>
<div class="lng-hdig">Ultimate JavaScript Course</div>
<p>This latest JavaScript course comes with premium curriculum that covers everything from
basics to advance. On top of that, you will get my handwritten notes of JS for
completely
free. What are you waiting for? Just Enroll Buddy
</p>
</div>
<div class="startwatching">
<span>Start Watching</span>
</div>
</div>
</div>
<!-- CARD-2 ENDS HERE -->
<!-- CARD-3 STARTS FROM HERE -->
<div class="card-wrapper">
<div class="cards" id="card-3">
<div id="card3-thumbnail" class="thumbnail">
<img src="course_thumbnails/react.jpeg" alt="react thumbnail">
</div>
<div class="contentpara">
<span class="s-h">Free Course</span>
<div class="lng-hdig">React Js Tutorials For Beginners</div>
<p>React is a free and open-source front-end JavaScript library. This series will cover
React
from starting to the end. We will learn react from the ground up!</p>
</div>
<div class="startwatching">
<span>Start Watching</span>
</div>
</div>
</div>
<!-- CARD-3 ENDS HERE -->
</div>
</div>
<!-- SECTION-2 ENDS HERE -->
<!-- SECTION-3 STARTS HERE -->
<div class="section-3 container">
<h2 class="main-heading">Testimonials</h2>
<div class="testimonial-container">
<div class="testimonial-card">
<div class="testi-content">
<span class="material-symbols-outlined">
format_quote
</span>
<p>I don't have words to thank this man, I'm really grateful to have this channel and website in
my
daily routine.
If you're a mere beginner, then you can trust this guy and can put your time into his
content. I
can assure you
that it'll be worth it.</p>
<span class="user-name">
<span class="name">Mohit Kumar</span>
<span class="role">Web developer</span>
</span>
</div>
</div>
<div class="testimonial-card">
<div class="testi-content">
<span class="material-symbols-outlined">
format_quote
</span>
<p>For everyone who wants to level up their #Coding and #Dev skills - seriously, this channel is
for
you! Both basic and advanced stacks are covered on this channel, and one can learn according
to
his skill levels. And the icing on the cake is, everything is available for free.</p>
<span class="user-name">
<span class="name">Rakesh Shetty</span>
<span class="role">Web developer</span>
</span>
</div>
</div>
</div>
</div>
<!-- SECTION-3 ENDS HERE -->
<!-- FOOTER STARTS HERE -->
<footer>
<div class="footer-content container">
<div class="footer-logo">
<img src="logo-blue.webp" alt="">
<span>CodeWithHarry</span>
</div>
<div class="copyright">
<p>Copyright © 2022 CodeWithHarry.com</p>
</div>
</div>
</footer>
<!-- FOOTER ENDS HERE -->
<script src="script.js" defer></script>
<script type="module" src="https://unpkg.com/[email protected]/dist/ionicons/ionicons.esm.js"></script>
<script nomodule src="https://unpkg.com/[email protected]/dist/ionicons/ionicons.js"></script>
</body>
</html>