This repository was archived by the owner on May 2, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
285 lines (257 loc) · 13 KB
/
Copy pathindex.html
File metadata and controls
285 lines (257 loc) · 13 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
<!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>My Toolkits</title>
<!-- favicon here -->
<link rel="icon" type="image/x-icon" href="./assets/icons/favicon.ico">
<!-- styles import -->
<link rel="stylesheet" href="css/style.css">
<!-- <link rel="stylesheet" href="css/style.scss" type="text/x-scss"> -->
<!-- materialize icons, css & js -->
<link type="text/css" href="./css/materialize.min.css" rel="stylesheet">
<!-- Compiled and minified CSS -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css">
<!-- fonts import -->
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<!-- main logo font and nav bar font import -->
<link href="https://fonts.googleapis.com/css2?family=Roboto+Slab&display=swap" rel="stylesheet">
<!-- all contents fonts import -->
<link href="https://fonts.googleapis.com/css2?family=Readex+Pro:wght@300&display=swap" rel="stylesheet">
<script type="text/javascript" src="./js/materialize.min.js"></script>
<!-- manifest import -->
<link rel="manifest" href="./manifest.json">
<!-- required data for browser -->
<meta name="theme-color" content="#00796b">
</head>
<body>
<section class="navbar">
<div class="navbar-fixed">
<nav>
<div class="nav-wrapper orange darken-1">
<a href="/" class="brand-logo">
<img src=" ./assets/main-logo/main-logo.png" alt="brand-logo" id="logo"></a>
<a href="#" data-target="mobile-demo" class="sidenav-trigger"><i class="material-icons">menu</i></a>
<ul id="nav" class="right hide-on-med-and-down">
<li><a href="#" onclick="toggleModal();">How to use</a></li>
<li><a href="./pages/about-us.html">About us</a></li>
<!-- <li><a href="/pages/favorites.html">Favorites</a></li> -->
<li><a href="./pages/contact-us.html">Contact Us</a></li>
<!-- Dropdown Trigger -->
<li><a class="dropdown-trigger hoverable" href="#" data-target="dropdown1">
<i class="material-icons right">more_vert</i></a></li>
</ul>
<!-- dropdown menus -->
<ul id="dropdown1" class="dropdown-content">
<li><a href="./pages/Disclamer.html">Disclamer</a></li>
<!-- <li><a href="/pages/contact-us.html">Contact Us</a></li> -->
<li><a href="./pages/privacy policy.html">Privacy Policy</a></li>
<li><a href="./pages/tnc.html">Terms & Conditions</a></li>
</ul>
</div>
</nav>
</div>
<!-- Here is the Mobile side navbar -->
<ul class="sidenav" id="mobile-demo">
<li><a href="#" onclick="toggleModal();">How to use</a></li>
<li><a href="./pages/about-us.html">About us</a></li>
<!-- <li><a href="/pages/favorites.html">Favorites</a></li> -->
<li><a href="./pages/Disclamer.html">Disclamer</a></li>
<li><a href="./pages/contact-us.html">Contact Us</a></li>
<li><a href="./pages/privacy policy.html">Privacy Policy</a></li>
<li><a href="./pages/tnc.html">Terms & Conditions</a></li>
</ul>
</section>
<!-- basic tools lists -->
<section class="tools">
<!-- qr code gen -->
<div class="row" style="padding-left: 30px; padding-right: 30px;">
<section class="tool-catogries center">
<h3>Basic Tools</h3>
<hr>
</section>
<div class="col s12 m6 l3" style="padding: 65px 35px;">
<div class="card hoverable">
<div class="card-image waves-effect waves-block waves-light">
<img class="activator" src="./assets/tools-logo/qrcode.png">
</div>
<div class="card-content">
<span class="card-title activator" title="description">Qr Code Generator
<i class="material-icons right">menu_open</i>
</span>
<p><a href="./tools/qrcode/qr_code.html"><i class="material-icons left">launch</i>Click to open</a></p>
</div>
<div class="card-reveal">
<span class="card-title">Qr Code Generator<i class="material-icons right">close</i></span>
<p>You can Generate qr code just pasting the any link, text or what ever you what to paste</p>
</div>
</div>
</div>
<!-- Todo list -->
<div class="col s12 m6 l3" style="padding: 65px 35px;">
<div class="card hoverable">
<div class="card-image waves-effect waves-block waves-light">
<img class="activator" src="https://img.icons8.com/material-sharp/100/000000/ok--v2.png">
</div>
<div class="card-content">
<span class="card-title activator " title="description">Todo<br>List
<i class="material-icons right">menu_open</i></span>
<p><a href="./tools/to_do_list/todo-list.html"><i class="material-icons left">launch</i>Click to open</a>
</p>
</div>
<div class="card-reveal">
<span class="card-title ">Todo list<i class="material-icons right">close</i></span>
<p>You can create you todo list as per your daily Schedule,also delete it after the task is finished</p>
</div>
</div>
</div>
<!-- password generator-->
<div class="col s12 m6 l3" style="padding: 65px 35px;">
<div class="card hoverable">
<div class="card-image waves-effect waves-block waves-light">
<img class="activator" src="./assets/tools-logo/pwd-gen.png">
</div>
<div class="card-content">
<span class="card-title activator" title="description">Password Generator
<i class="material-icons right">menu_open</i></span>
<p><a href="./tools/pass_gen/pass_gen.html"><i class="material-icons left">launch</i>Click to open</a></p>
</div>
<div class="card-reveal">
<span class="card-title">Password Generator<i class="material-icons right">close</i></span>
<p>This is the Password Generator You can Generate as many as password you can !</p>
</div>
</div>
</div>
<!-- Draw -->
<div class="col s12 m6 l3" style="padding: 65px 35px;">
<div class="card hoverable">
<div class="card-image waves-effect waves-block waves-light">
<img class="activator" src="./assets/tools-logo/draw.png">
</div>
<div class="card-content">
<span class="card-title activator " title="description">Draw
<i class="material-icons right">menu_open</i>
</span>
<p><a href="./tools/draw/draw.html" title="upcoming tool in production"><i
class="material-icons left">launch</i>Click to open</a></p>
</div>
<div class="card-reveal">
<span class="card-title">Draw<i class="material-icons right">close</i></span>
<p>Just for time pass :) Draw it what you want & download the files & share it to anyone</p>
</div>
</div>
</div>
</div>
</section>
<section class="tools">
<!-- up coming tools-->
<div class="row" style="padding-left: 30px; padding-right: 30px;">
<section class="tool-catogries center">
<h3>Up Coming Tools</h3>
<hr>
</section>
<!-- Expense Calculator -->
<div class="col s12 m6 l3" style="padding: 65px 35px;">
<div class="card hoverable">
<div class="card-image waves-effect waves-block waves-light">
<img class="activator" src="assets/tools-logo/expense-cal.png">
</div>
<div class="card-content">
<span class="card-title activator " title="description">Expense Calculator
<i class="material-icons right">menu_open</i>
</span>
<p><a href="#" class="tooltipped" data-position="bottom" data-tooltip="Under Development"><i
class="material-icons left">launch</i>Click to open </a></p>
</div>
<div class="card-reveal">
<span class="card-title">Expense Calculator<i class="material-icons right">close</i></span>
<p>Here is the Expense Calculator to track the expense of you earnings.</p>
</div>
</div>
</div>
<!-- Habit tracker-->
<div class="col s12 m6 l3" style="padding: 65px 35px;">
<div class="card hoverable">
<div class="card-image waves-effect waves-block waves-light">
<img class="activator" src="./assets/tools-logo/habit-track.png">
</div>
<div class="card-content">
<span class="card-title activator " title="description">habit tracker
<i class="material-icons right">menu_open</i>
</span>
<p><a href="#" class="tooltipped" data-position="bottom" data-tooltip="Under Development"><i class="material-icons left">launch</i>Click to Open</a></p>
</div>
<div class="card-reveal">
<span class="card-title">habit tracker<i class="material-icons right">close</i></span>
<p>You can Generate you good Habits just add it</p>
</div>
</div>
</div>
</div>
</section>
<!-- modal-content for how to use deep-purple-text-->
<section class="infomodal">
<div id="modal3" class="modal modal-fixed-footer">
<div class="modal-content ">
<h4 id="info-modal-heading">How To Use</h4>
<h5 id="info-modal-content" class="center-on-small-only">So What is PWA</h5>
<hr>
<p class="justify">A progressive web application (PWA), commonly known as a progressive web app, is a type of
application software delivered through the web, built using common web technologies including HTML, CSS,
JavaScript, and WebAssembly. It is intended to work on any platform that uses a standards-compliant browser,
including both desktop and mobile devices.</p>
<p>Since a progressive web app is a type of webpage or website known as a web application, they do not require
separate bundling or distribution. Developers can just publish the web application online, ensure that it
meets baseline "installability requirements", and users will be able to add the application to their home
screen.Publishing the app to digital distribution systems like Apple App Store or Google Play is optional</p>
<h5 id="info-modal-content" class="center-on-small-only">how to add this web app</h5>
<hr>
<p><b>Here are the steps to add</b></p>
<ol>
<li>First and formost you will see the download icon on the address bar of your browser if you use chrome
</li>
<img src="/assets/images/dwl-pwa.jpg" alt="h2u" class="responsive-img"> on dektop or on android mobile
<img src="/assets/images/add2home.jpeg" alt="h2u" class="center-on-small-only responsive-img">
<li>Then just click add or download as per on which ever your device is</li>
<li>Give some time to download </li>
<li>after your dowload is finished you will get this notification like this</li>
<img src="/assets/images/notify.jpeg" alt="h2u" class="center-on-small-only responsive-img">
<li>Now you will see the app icon on your home screen Hurray!</li>
</ol>
<p>Now your Good to go</p>
<h5 id="info-modal-content" class="center-on-small-only">special features</h5>
<hr>
<p class="deep-purple-text">
<i>It can work offline as it is a native web app after net permits it works like as usual</i>
</p>
<!-- btn for know more -->
<span class="waves-light waves-effect btn deep-purple darken-3">
<a href="https://web.dev/progressive-web-apps/" target="_blank" class="white-text">To know More Info click
me</a>
</span>
</div>
<div class="modal-footer">
<a href="#!" class="modal-close waves-effect waves-green btn-flat">Close</a>
</div>
</div>
</section>
<!-- light/dark mode button -->
<div class="fixed-action-btn">
<a class="btn-floating btn-large dark-toggle blue darken-3 hoverable " href="#"
onclick="localStorage.setItem('mode', (localStorage.getItem('mode') || 'dark') === 'dark' ? 'light' : 'dark'); localStorage.getItem('mode') === 'dark' ? document.querySelector('body').classList.add('dark') : document.querySelector('body').classList.remove('dark')"
title="Dark/light">
<i class="large material-icons">brightness_4</i>
</a>
</div>
<!-- jquery import -->
<script src="https://code.jquery.com/jquery-3.6.0.min.js"
integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4=" crossorigin="anonymous"></script>
<!-- Compiled and minified JavaScript -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/js/materialize.min.js"></script>
<!-- custom js files -->
<script src="./js/script.js"></script>
<script src="./js/app.js"></script>
</body>
</html>