-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
276 lines (274 loc) · 8.58 KB
/
index.html
File metadata and controls
276 lines (274 loc) · 8.58 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
<!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" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.14.0/css/all.min.css"
/>
<link rel="stylesheet" href="styles.css" />
<title>Javascript Projects</title>
</head>
<body>
<header><h1>JavaScript Projects</h1></header>
<section class="cards">
<div class="card-container">
<article class="card">
<div class="card-front">
<h2>
<span>Countdown Timer</span><br />
App
</h2>
</div>
<div class="card-back">
<header><h3>Countdown Timer App</h3></header>
<ul>
<li>Timer till coming new year</li>
<li>Timer will change to next year if current year completes</li>
</ul>
<a
href="https://santu369.github.io/javascriptprojects/countdown-timer-app/"
target="_blank"
>View App</a
>
</div>
</article>
</div>
<div class="card-container">
<article class="card">
<div class="card-front">
<h2><span>Quiz</span><br />App</h2>
</div>
<div class="card-back">
<header><h3>Quiz App</h3></header>
<ul>
<li>
Uses
<a href="https://opentdb.com/api_config.php" target="_blank"
>Trivia API</a
>
to fetch 5 random questions and options
</li>
<li>Displays your score at the end with restart option</li>
</ul>
<a
href="https://santu369.github.io/javascriptprojects/quiz-app/"
target="_blank"
>View App</a
>
</div>
</article>
</div>
<div class="card-container">
<article class="card">
<div class="card-front">
<h2><span>Todo List</span><br />App</h2>
</div>
<div class="card-back">
<header><h3>Todo List App</h3></header>
<ul>
<li>Add or Delete items from Todo List</li>
<li>Mark items as completed</li>
<li>Implemented local storage for items</li>
</ul>
<a
href="https://santu369.github.io/javascriptprojects/todo-list-app/"
target="_blank"
>View App</a
>
</div>
</article>
</div>
<div class="card-container">
<article class="card">
<div class="card-front">
<h2><span>Weather</span><br />App</h2>
</div>
<div class="card-back">
<header><h3>Weather App</h3></header>
<ul>
<li>
Uses
<a href="https://api.openweathermap.org" target="_blank"
>Weather API</a
>
</li>
<li>Get weather info using City name</li>
</ul>
<a
href="https://santu369.github.io/javascriptprojects/weather-app/"
target="_blank"
>View App</a
>
</div>
</article>
</div>
<div class="card-container">
<article class="card">
<div class="card-front">
<h2><span>GitHub Profiles</span><br />App</h2>
</div>
<div class="card-back">
<header><h3>GitHub Profiles App</h3></header>
<ul>
<li>
Uses
<a href="https://developer.github.com/v3/" target="_blank"
>GitHub Rest API</a
>
</li>
<li>
Search using GitHub Username to get user details and some
repository details
</li>
</ul>
<a
href="https://santu369.github.io/javascriptprojects/github-profiles-app/"
target="_blank"
>View App</a
>
</div>
</article>
</div>
<div class="card-container">
<article class="card">
<div class="card-front">
<h2><span>Movies</span><br />App</h2>
</div>
<div class="card-back">
<header><h3>Movies App</h3></header>
<ul>
<li>
Uses
<a href="https://www.omdbapi.com/" target="_blank">OMDb API</a>
</li>
<li>Search using movie/series name</li>
<li>Click on any movie/series to view details</li>
</ul>
<a
href="https://santu369.github.io/javascriptprojects/movies-app/"
target="_blank"
>View App</a
>
</div>
</article>
</div>
<div class="card-container">
<article class="card">
<div class="card-front">
<h2><span>Password Generator</span><br />App</h2>
</div>
<div class="card-back">
<header><h3>Password Generator App</h3></header>
<ul>
<li>Generates random password</li>
<li>Copy password with a click</li>
<li>Uppercase letters, numbers, symbols can be included</li>
</ul>
<a
href="https://santu369.github.io/javascriptprojects/password-generator-app/"
target="_blank"
>View App</a
>
</div>
</article>
</div>
<div class="card-container">
<article class="card">
<div class="card-front">
<h2><span>Drawing</span><br />App</h2>
</div>
<div class="card-back">
<header><h3>Drawing App</h3></header>
<ul>
<li>Draw on canvas using mouse</li>
<li>
Change color, stroke width, reset canvas options are available
</li>
<li>Export the drawing as an image</li>
</ul>
<a
href="https://santu369.github.io/javascriptprojects/drawing-app/"
target="_blank"
>View App</a
>
</div>
</article>
</div>
<div class="card-container">
<article class="card">
<div class="card-front">
<h2><span>Notes</span><br />App</h2>
</div>
<div class="card-back">
<header><h3>Notes App</h3></header>
<ul>
<li>Add notes using Markdown</li>
<li>Edit or preview notes</li>
<li>Implemented local storage for Notes</li>
</ul>
<a
href="https://santu369.github.io/javascriptprojects/notes-app/"
target="_blank"
>View App</a
>
</div>
</article>
</div>
<div class="card-container">
<article class="card">
<div class="card-front">
<h2><span>Recipes</span><br />App</h2>
</div>
<div class="card-back">
<header><h3>Recipes App</h3></header>
<ul>
<li>
Uses
<a href="https://www.themealdb.com/api.php" target="_blank"
>TheMealDB API</a
>
</li>
<li>Search using any ingredient</li>
<li>Click on any recipe to view details</li>
<li>Add/Remove recipes to favorites</li>
<li>Implemented local storage for favorite Recipes</li>
</ul>
<a
href="https://santu369.github.io/javascriptprojects/recipes-app/"
target="_blank"
>View App</a
>
</div>
</article>
</div>
</section>
<footer>
<h1>My Info</h1>
<ul>
<li>
LinkedIn Profile
<a href="https://www.linkedin.com/in/shivasantoshjana" target="_blank"
><i class="fab fa-linkedin-in"></i
></a>
</li>
<li>
Twitter Handle
<a href="https://www.twitter.com/santu69" target="_blank"
><i class="fab fa-twitter"></i
></a>
</li>
<li>
GitHub Repo
<a
href="https://www.github.com/santu369/javascriptprojects"
target="_blank"
><i class="fab fa-github"></i>
</a>
</li>
</ul>
</footer>
</body>
</html>