-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
299 lines (272 loc) · 11.2 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>AOT Hackathon | Soumojit Shome</title>
<!-- =================Links================= -->
<link rel="stylesheet" href="styles\style.css" />
<link rel="stylesheet" href="styles\home.css" />
<link rel="shortcut icon" href="imgs\favicon.jpg" type="image/x-icon" />
<!-- =================================================== -->
<!-- =================Meta Tags================= -->
<meta name="theme-color" content="#696765" />
<meta name="title" content="AOT Hackathon | Learn to Code" />
<meta name="description" content="Learning Website | AOT Hackathon | Soumojit Shome" />
<meta name="keywords" content="learn to code, learning website, soumojit shome, hackathon" />
<meta name="robots" content="index, follow" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="language" content="English" />
<meta name="revisit-after" content="5 days" />
<meta name="author" content="Soumojit Shome" />
<meta itemprop="image" content="https://drive.google.com/uc?export=view&id=1tKb9le2HhdOCYBv5hNuiGKjVNvgE1PIv" />
<meta property="og:title" content="AOT Hackathon | Learning Website | Soumojit Shome" />
<meta property="og:site_name" content="AOT Hackathon | Learning Website | Soumojit Shome" />
<meta property="og:url" content="https://aot-hackathon-riot.vercel.app" />
<meta property="og:description" content="AOT Hackathon | Learning Website | Soumojit Shome" />
<meta property="og:type" content="website" />
<meta property="og:image" content="https://drive.google.com/uc?export=view&id=1tKb9le2HhdOCYBv5hNuiGKjVNvgE1PIv" />
<!-- =================================================== -->
<!-- =================FONT AWESOME================= -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" />
<!-- =================================================== -->
<!-- =================GOOGLE FONTS================= -->
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link href="https://fonts.googleapis.com/css2?family=Fredoka+One&family=Play&display=swap" rel="stylesheet" />
<!-- =================================================== -->
<!-- =================FireBase================= -->
<script src="https://www.gstatic.com/firebasejs/8.9.0/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.9.0/firebase-database.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.9.0/firebase-auth.js"></script>
<!-- =================================================== -->
</head>
<body>
<!-- =================Nav Bar================= -->
<section id="navbar">
<div class="loader">
<div class="loader__bar"></div>
<div class="loader__bar"></div>
<div class="loader__bar"></div>
<div class="loader__bar"></div>
<div class="loader__bar"></div>
<div class="loader__ball"></div>
</div>
<p>Learn to Code</p>
<button class="button" id="nav_sign_in_btn" onclick="signInWithGoogle_btn()">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 24">
<path d="m18 0 8 12 10-8-4 20H4L0 4l10 8 8-12z"></path>
</svg>
Sign In
</button>
<div class="user_box">
<div class="user_card">
<div class="user_card-border-top"></div>
<div class="img" id="user_box_img"></div>
<span id="user_box_name"></span>
<button onclick="sign_out()">Sign Out</button>
</div>
</div>
</section>
<!-- =================================================== -->
<!-- =================Main================= -->
<section id="home">
<div class="heading">
<p></p>
<div class="cbtn">
<a href="#topics">
<button class="btn" type="button">
<strong>Get Started</strong>
<div id="container-stars">
<div id="stars"></div>
</div>
<div id="glow">
<div class="circle"></div>
<div class="circle"></div>
</div>
</button>
</a>
<a href="#topics">
<button class="btn" type="button">
<strong>Problem Of The Day</strong>
<div id="container-stars">
<div id="stars"></div>
</div>
<div id="glow">
<div class="circle"></div>
<div class="circle"></div>
</div>
</button>
</a>
</div>
</div>
<video autoplay muted loop id="myVideo">
<source id="bgvid" src="Video\AOTCampus.mp4" type="video/mp4" />
</video>
</section>
<main>
<section id="topics">
<!-- =================College Ass================= -->
<div class="card">
<div class="image"><img src="imgs\aotpic3.jpg" alt="" /></div>
<div class="content">
<a href="#">
<span class="title">College Assignment </span>
</a>
<p class="desc">
We hold the exquisite solutions to every computer assignment,
guiding you from inception to conclusion, encompassing even the
assignments of your inaugural year.
</p>
<a href="#">
<button class="learn_more_btn">Coming Soon</button>
</a>
</div>
</div>
<!-- =================================================== -->
<!-- =================CPP================= -->
<div class="card">
<div class="image"><img src="imgs\cpp logo.png" alt="" /></div>
<div class="content">
<a href="#">
<span class="title"> Complete CPP </span>
</a>
<p class="desc">
As C++ is close to other programming languages such as C# and
Java, which makes it easy for programmers to switch to C++ or vice
versa while it is actually very easy to learn.
</p>
<a href="pages\cpp.html" target="_blank">
<button class="learn_more_btn">Learn more</button>
</a>
</div>
</div>
<!-- =================================================== -->
<!-- =================C================= -->
<div class="card">
<div class="image"><img src="imgs\c logo.png" alt="" /></div>
<div class="content">
<a href="#">
<span class="title"> Complete C </span>
</a>
<p class="desc">
C is a general-purpose programming language, developed in 1972,
and still quite popular. C is very powerful; it has been used to
develop operating systems, databases, applications, etc.
</p>
<a href="#">
<button class="learn_more_btn">Coming Soon</button>
</a>
</div>
</div>
<!-- =================================================== -->
<!-- =================Python================= -->
<div class="card">
<div class="image"><img src="imgs\python logo.png" alt="" /></div>
<div class="content">
<a href="#">
<span class="title"> Complete Python </span>
</a>
<p class="desc">
Python is an interpreted, object-oriented, high-level programming
language with dynamic semantics.Its high-level built-in data
structures, combined with dynamic typing and dynamic binding, make
it very attractive for Rapid Application Development
</p>
<a href="#">
<button class="learn_more_btn">Coming Soon</button>
</a>
</div>
</div>
<!-- =================================================== -->
<!-- =================JAVA================= -->
<div class="card">
<div class="image"><img src="imgs\java logo.png" alt="" /></div>
<div class="content">
<a href="#">
<span class="title"> Complete JAVA </span>
</a>
<p class="desc">
Java is a popular programming language. Java is used to develop
mobile apps, web apps, desktop apps, games and much more.
</p>
<a href="#">
<button class="learn_more_btn">Coming Soon</button>
</a>
</div>
</div>
<!-- =================================================== -->
<!-- =================HTML================= -->
<div class="card">
<div class="image"><img src="imgs\html logo.png" alt="" /></div>
<div class="content">
<a href="#">
<span class="title"> Complete HTML </span>
</a>
<p class="desc">
HTML is the standard markup language for Web pages. With HTML you
can create your own Website. HTML is easy to learn - You will
enjoy it!
</p>
<a href="#">
<button class="learn_more_btn">Coming Soon</button>
</a>
</div>
</div>
<!-- =================================================== -->
<!-- =================CSS================= -->
<div class="card">
<div class="image"><img src="imgs\css logo.png" alt="" /></div>
<div class="content">
<a href="#">
<span class="title"> Complete CSS </span>
</a>
<p class="desc">
CSS is the language we use to style an HTML document. CSS
describes how HTML elements should be displayed. This tutorial
will teach you CSS from basic to advanced.
</p>
<a href="#">
<button class="learn_more_btn">Coming Soon</button>
</a>
</div>
</div>
<!-- =================================================== -->
<!-- =================JavaScript================= -->
<div class="card">
<div class="image"><img src="imgs\js logo.png" alt="" /></div>
<div class="content">
<a href="#">
<span class="title"> Complete JavaScript </span>
</a>
<p class="desc">
JavaScript is the world's most popular programming language.
JavaScript is the programming language of the Web. JavaScript is
easy to learn. This tutorial will teach you JavaScript from basic
to advanced.
</p>
<a href="#">
<button class="learn_more_btn">Coming Soon</button>
</a>
</div>
</div>
<!-- =================================================== -->
</section>
<!-- =================================================== -->
<!-- =================comment Sec================= -->
<embed src="pages\comment_sec.html" type="" />
<!-- =================================================== -->
<!-- ================= Footer ================= -->
<section id="footer">
<a href="https://iamsoumojit.vercel.app" target="_blank">
Copyright © 2023 All rights reserved | Designed By: Soumojit Shome &
Subrata Paul
</a>
</section>
<!-- =================================================== -->
</main>
</body>
<!-- ================= Script ================= -->
<script src="scripts\script.js"></script>
<script src="scripts\firebase.js"></script>
<!-- =================================================== -->
</html>