├── .github └── FUNDING.yml ├── LICENSE ├── README.md ├── assets ├── css │ ├── all.min.css │ ├── bootstrap.min.css │ ├── jquery-ui.css │ ├── media.css │ ├── owl.carousel.min.css │ ├── owl.theme.default.min.css │ ├── style.css │ └── swiper-bundle.min.css ├── font │ ├── ConthraxSb-Regular.woff │ ├── ConthraxSb-Regular.woff2 │ ├── Ubuntu-Bold.woff │ ├── Ubuntu-Bold.woff2 │ ├── Ubuntu-BoldItalic.woff │ ├── Ubuntu-BoldItalic.woff2 │ ├── Ubuntu-Italic.woff │ ├── Ubuntu-Italic.woff2 │ ├── Ubuntu-Light.woff │ ├── Ubuntu-Light.woff2 │ ├── Ubuntu-LightItalic.woff │ ├── Ubuntu-LightItalic.woff2 │ ├── Ubuntu-Medium.woff │ ├── Ubuntu-Medium.woff2 │ ├── Ubuntu-MediumItalic.woff │ ├── Ubuntu-MediumItalic.woff2 │ ├── Ubuntu-Regular.woff │ ├── Ubuntu-Regular.woff2 │ ├── demo.html │ └── stylesheet.css ├── image │ ├── about-01.png │ ├── about-02.png │ ├── about-03 (2).png │ ├── about-03.png │ ├── about-04.png │ ├── about-05.png │ ├── aiaashu.jpg │ ├── arrow-png.png │ ├── body-bg.jpg │ ├── brad5.png │ ├── brand1.png │ ├── brand2.png │ ├── brand3.png │ ├── brand4.png │ ├── brand6.png │ ├── brand7.png │ ├── create-banner.png │ ├── create.png │ ├── download.png │ ├── ether.png │ ├── eye.png │ ├── eye2.png │ ├── game-charecters.png │ ├── hero.mp4 │ ├── icon01.png │ ├── icon02.png │ ├── icon03.png │ ├── icon04.png │ ├── img-faq.png │ ├── line.png │ ├── loader-alt.gif │ ├── port-1.svg │ ├── port-2.svg │ ├── port-3.svg │ ├── port-4.svg │ ├── portfolio.png │ ├── project-01.png │ ├── project-02.png │ ├── project-03.png │ ├── project-04.png │ ├── project-05.png │ ├── project-06.png │ ├── project-08.png │ ├── project-09.png │ ├── project-10.png │ ├── review.png │ ├── review1.png │ ├── review2.png │ ├── review3.png │ ├── simsim.png │ ├── simsimlgo.png │ ├── team-01.png │ ├── team-02.jpg │ ├── team-03.png │ ├── team-04.jpg │ ├── team-logo-1.png │ ├── team-logo-2.png │ └── team-logo-3.png ├── js │ ├── bootstrap.bundle.js │ ├── bootstrap.min.js │ ├── faq.js │ ├── jquery-3.6.4.min.js │ ├── jquery-ui.js │ ├── jquery.min.js │ ├── owl.carousel.min.js │ ├── swiper-bundle.min.js │ └── swiper.js └── webfonts │ ├── fa-brands-400.ttf │ ├── fa-brands-400.woff2 │ ├── fa-regular-400.ttf │ ├── fa-regular-400.woff2 │ ├── fa-solid-900.ttf │ ├── fa-solid-900.woff2 │ ├── fa-v4compatibility.ttf │ └── fa-v4compatibility.woff2 └── index.html /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2] 4 | patreon: # Replace with a single Patreon username 5 | open_collective: # Replace with a single Open Collective username 6 | ko_fi: # Replace with a single Ko-fi username 7 | tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel 8 | community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry 9 | liberapay: # Replace with a single Liberapay username 10 | issuehunt: # Replace with a single IssueHunt username 11 | lfx_crowdfunding: # Replace with a single LFX Crowdfunding project-name e.g., cloud-foundry 12 | polar: # Replace with a single Polar username 13 | buy_me_a_coffee: # Replace with a single Buy Me a Coffee username 14 | custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2'] 15 | 16 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2024 Ashutosh Kumar 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |
.your-style { 164 | font-family: 'Ubuntu'; 165 | font-weight: bold; 166 | font-style: normal; 167 | }168 |
169 | <link rel="preload" href="Ubuntu-Bold.woff2" as="font" type="font/woff2" crossorigin>170 |
172 | abcdefghijklmnopqrstuvwxyz
173 | ABCDEFGHIJKLMNOPQRSTUVWXYZ
174 | 0123456789.:,;()*!?'@#<>$%&^+-=~
175 |
The quick brown fox jumps over the lazy dog.
177 |The quick brown fox jumps over the lazy dog.
178 |The quick brown fox jumps over the lazy dog.
179 |The quick brown fox jumps over the lazy dog.
180 |The quick brown fox jumps over the lazy dog.
181 |The quick brown fox jumps over the lazy dog.
182 |The quick brown fox jumps over the lazy dog.
183 |The quick brown fox jumps over the lazy dog.
184 |The quick brown fox jumps over the lazy dog.
185 |The quick brown fox jumps over the lazy dog.
186 |The quick brown fox jumps over the lazy dog.
187 |.your-style { 193 | font-family: 'Ubuntu'; 194 | font-weight: bold; 195 | font-style: italic; 196 | }197 |
198 | <link rel="preload" href="Ubuntu-BoldItalic.woff2" as="font" type="font/woff2" crossorigin>199 |
201 | abcdefghijklmnopqrstuvwxyz
202 | ABCDEFGHIJKLMNOPQRSTUVWXYZ
203 | 0123456789.:,;()*!?'@#<>$%&^+-=~
204 |
The quick brown fox jumps over the lazy dog.
206 |The quick brown fox jumps over the lazy dog.
207 |The quick brown fox jumps over the lazy dog.
208 |The quick brown fox jumps over the lazy dog.
209 |The quick brown fox jumps over the lazy dog.
210 |The quick brown fox jumps over the lazy dog.
211 |The quick brown fox jumps over the lazy dog.
212 |The quick brown fox jumps over the lazy dog.
213 |The quick brown fox jumps over the lazy dog.
214 |The quick brown fox jumps over the lazy dog.
215 |The quick brown fox jumps over the lazy dog.
216 |.your-style { 222 | font-family: 'Ubuntu'; 223 | font-weight: normal; 224 | font-style: italic; 225 | }226 |
227 | <link rel="preload" href="Ubuntu-Italic.woff2" as="font" type="font/woff2" crossorigin>228 |
230 | abcdefghijklmnopqrstuvwxyz
231 | ABCDEFGHIJKLMNOPQRSTUVWXYZ
232 | 0123456789.:,;()*!?'@#<>$%&^+-=~
233 |
The quick brown fox jumps over the lazy dog.
235 |The quick brown fox jumps over the lazy dog.
236 |The quick brown fox jumps over the lazy dog.
237 |The quick brown fox jumps over the lazy dog.
238 |The quick brown fox jumps over the lazy dog.
239 |The quick brown fox jumps over the lazy dog.
240 |The quick brown fox jumps over the lazy dog.
241 |The quick brown fox jumps over the lazy dog.
242 |The quick brown fox jumps over the lazy dog.
243 |The quick brown fox jumps over the lazy dog.
244 |The quick brown fox jumps over the lazy dog.
245 |.your-style { 251 | font-family: 'Ubuntu'; 252 | font-weight: 300; 253 | font-style: normal; 254 | }255 |
256 | <link rel="preload" href="Ubuntu-Light.woff2" as="font" type="font/woff2" crossorigin>257 |
259 | abcdefghijklmnopqrstuvwxyz
260 | ABCDEFGHIJKLMNOPQRSTUVWXYZ
261 | 0123456789.:,;()*!?'@#<>$%&^+-=~
262 |
The quick brown fox jumps over the lazy dog.
264 |The quick brown fox jumps over the lazy dog.
265 |The quick brown fox jumps over the lazy dog.
266 |The quick brown fox jumps over the lazy dog.
267 |The quick brown fox jumps over the lazy dog.
268 |The quick brown fox jumps over the lazy dog.
269 |The quick brown fox jumps over the lazy dog.
270 |The quick brown fox jumps over the lazy dog.
271 |The quick brown fox jumps over the lazy dog.
272 |The quick brown fox jumps over the lazy dog.
273 |The quick brown fox jumps over the lazy dog.
274 |.your-style { 280 | font-family: 'Ubuntu'; 281 | font-weight: 300; 282 | font-style: italic; 283 | }284 |
285 | <link rel="preload" href="Ubuntu-LightItalic.woff2" as="font" type="font/woff2" crossorigin>286 |
288 | abcdefghijklmnopqrstuvwxyz
289 | ABCDEFGHIJKLMNOPQRSTUVWXYZ
290 | 0123456789.:,;()*!?'@#<>$%&^+-=~
291 |
The quick brown fox jumps over the lazy dog.
293 |The quick brown fox jumps over the lazy dog.
294 |The quick brown fox jumps over the lazy dog.
295 |The quick brown fox jumps over the lazy dog.
296 |The quick brown fox jumps over the lazy dog.
297 |The quick brown fox jumps over the lazy dog.
298 |The quick brown fox jumps over the lazy dog.
299 |The quick brown fox jumps over the lazy dog.
300 |The quick brown fox jumps over the lazy dog.
301 |The quick brown fox jumps over the lazy dog.
302 |The quick brown fox jumps over the lazy dog.
303 |.your-style { 309 | font-family: 'Ubuntu'; 310 | font-weight: 500; 311 | font-style: normal; 312 | }313 |
314 | <link rel="preload" href="Ubuntu-Medium.woff2" as="font" type="font/woff2" crossorigin>315 |
317 | abcdefghijklmnopqrstuvwxyz
318 | ABCDEFGHIJKLMNOPQRSTUVWXYZ
319 | 0123456789.:,;()*!?'@#<>$%&^+-=~
320 |
The quick brown fox jumps over the lazy dog.
322 |The quick brown fox jumps over the lazy dog.
323 |The quick brown fox jumps over the lazy dog.
324 |The quick brown fox jumps over the lazy dog.
325 |The quick brown fox jumps over the lazy dog.
326 |The quick brown fox jumps over the lazy dog.
327 |The quick brown fox jumps over the lazy dog.
328 |The quick brown fox jumps over the lazy dog.
329 |The quick brown fox jumps over the lazy dog.
330 |The quick brown fox jumps over the lazy dog.
331 |The quick brown fox jumps over the lazy dog.
332 |.your-style { 338 | font-family: 'Ubuntu'; 339 | font-weight: 500; 340 | font-style: italic; 341 | }342 |
343 | <link rel="preload" href="Ubuntu-MediumItalic.woff2" as="font" type="font/woff2" crossorigin>344 |
346 | abcdefghijklmnopqrstuvwxyz
347 | ABCDEFGHIJKLMNOPQRSTUVWXYZ
348 | 0123456789.:,;()*!?'@#<>$%&^+-=~
349 |
The quick brown fox jumps over the lazy dog.
351 |The quick brown fox jumps over the lazy dog.
352 |The quick brown fox jumps over the lazy dog.
353 |The quick brown fox jumps over the lazy dog.
354 |The quick brown fox jumps over the lazy dog.
355 |The quick brown fox jumps over the lazy dog.
356 |The quick brown fox jumps over the lazy dog.
357 |The quick brown fox jumps over the lazy dog.
358 |The quick brown fox jumps over the lazy dog.
359 |The quick brown fox jumps over the lazy dog.
360 |The quick brown fox jumps over the lazy dog.
361 |.your-style { 367 | font-family: 'Ubuntu'; 368 | font-weight: normal; 369 | font-style: normal; 370 | }371 |
372 | <link rel="preload" href="Ubuntu-Regular.woff2" as="font" type="font/woff2" crossorigin>373 |
375 | abcdefghijklmnopqrstuvwxyz
376 | ABCDEFGHIJKLMNOPQRSTUVWXYZ
377 | 0123456789.:,;()*!?'@#<>$%&^+-=~
378 |
The quick brown fox jumps over the lazy dog.
380 |The quick brown fox jumps over the lazy dog.
381 |The quick brown fox jumps over the lazy dog.
382 |The quick brown fox jumps over the lazy dog.
383 |The quick brown fox jumps over the lazy dog.
384 |The quick brown fox jumps over the lazy dog.
385 |The quick brown fox jumps over the lazy dog.
386 |The quick brown fox jumps over the lazy dog.
387 |The quick brown fox jumps over the lazy dog.
388 |The quick brown fox jumps over the lazy dog.
389 |The quick brown fox jumps over the lazy dog.
390 |