├── .gitattributes ├── README.md ├── css └── style.css ├── images ├── bg-2.png ├── bg-pattern-desktop.svg ├── bg-pattern-mobile.svg ├── bg.png ├── bg.svg ├── create-this-cool-neon-animation-discord-avatar.jpg ├── f0082eb1d5c19d7ad401c4471701f7ec.jpg ├── fav-icon.png ├── favicon-32x32.png ├── fire.gif ├── icon-arrow-down.svg ├── icon_7.svg ├── illustration-box-desktop.svg ├── illustration-woman-online-desktop.svg ├── illustration-woman-online-mobile.svg ├── logo.png ├── model-bg.svg ├── model.png └── skill2.png ├── index.html ├── index.js └── js └── main.js /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |
2 |

3 |

Advanced Website

4 |

5 |
6 | 7 | ## Table Of Contents 8 | 9 | - [Table Of Contents](#table-of-contents) 10 | - [About ❔](#about-) 11 | - [Preview](#preview) 12 | - [Other Projects](#other-projects) 13 | 14 | 15 | ## About ❔ 16 | 17 | This is a Advanced Website made by FiredragonPlayz#0087 and a friend using HTML and CSS! 18 | 19 | ## Preview 20 | 21 | For a Live Preview of this website [click me](https://flamebot.gq) 22 | 23 | ## Other Projects 24 | 25 | - Other Projects 26 | - [Flame Bot](https://top.gg/bot/796279185080582185) 27 | - [Website](https://flamebot.gq) 28 | 29 | Make Sure to ⭐ Star and 💎 Follow! 30 | And Don't Remove the Credits! 31 | 32 | 33 |
34 |
35 |
36 | 37 | FiredragonPlayz's Discord 38 | 39 | 40 | FiredragonPlayz's Twitter 41 | 42 | 43 | FiredragonPlayz's Twitter 44 | 45 | 46 | FiredragonPlayz's Github 47 | 48 |
-------------------------------------------------------------------------------- /css/style.css: -------------------------------------------------------------------------------- 1 | body { 2 | margin: 0px; 3 | padding: 0px; 4 | font-family: poppins; 5 | background-color: #111111; 6 | } 7 | 8 | *{ 9 | box-sizing: border-box; 10 | } 11 | 12 | ul{ 13 | list-style: none; 14 | } 15 | 16 | a{ 17 | text-decoration: none; 18 | } 19 | 20 | .navigation{ 21 | position: fixed; 22 | left: 0px; 23 | top: 0px; 24 | width: 100%; 25 | display: flex; 26 | justify-content: space-between; 27 | align-items: center; 28 | padding: 15px 50px; 29 | z-index: 4; 30 | background-image: linear-gradient(180deg, rgb(17, 17, 17) 15%, transparent); 31 | } 32 | a#scroll-up { 33 | bottom: 40px; 34 | width: -3%; 35 | height: - 4%; 36 | position: fixed; 37 | right: 30px; 38 | display: none; 39 | -webkit-font-smoothing: antialiased; 40 | font: normal 29px/1 'Genericons'; 41 | vertical-align: top; 42 | color: #FFFFFF; 43 | background-color: #0FBE7C; 44 | opacity: 0.5; 45 | filter:alpha(opacity=50); /* For IE8 and earlier */ 46 | border-radius: 3px; 47 | padding: 6px; 48 | } 49 | a#scroll-up:before { 50 | content: '\f432'; 51 | } 52 | a#scroll-up:hover { 53 | opacity: 4; 54 | filter:alpha(opacity=100); /* For IE8 and earlier */ 55 | } 56 | 57 | .menu{ 58 | display: flex; 59 | justify-content: center; 60 | align-items: center; 61 | margin: 0px; 62 | } 63 | 64 | .menu li { 65 | padding: 20px; 66 | } 67 | 68 | .logo { 69 | height: 33px; 70 | } 71 | 72 | .logo img{ 73 | height: 100%; 74 | object-fit: contain; 75 | object-position: center; 76 | 77 | } 78 | 79 | .menu li a{ 80 | color: #ffffffcc; 81 | } 82 | 83 | .hire-me{ 84 | color: #46a0f5; 85 | } 86 | 87 | .hire-me i{ 88 | margin-left: 4px; 89 | } 90 | 91 | .menu li a:hover{ 92 | color: #46a0f5; 93 | transition: all ease 0.5s; 94 | } 95 | 96 | .hire-me:hover{ 97 | color: #1a82e2; 98 | transition: all ease 0.5s; 99 | } 100 | 101 | #main{ 102 | width: 100%; 103 | height: 100vh; 104 | position: relative; 105 | overflow: hidden; 106 | z-index: 1; 107 | } 108 | 109 | #main::before{ 110 | content: ''; 111 | position: absolute; 112 | width: 130%; 113 | height: 100vh; 114 | left: -20%; 115 | top: -23%; 116 | transform: rotate(10deg); 117 | background: linear-gradient(45deg, rgb(19,19,19) -10%, #141516); 118 | z-index: -1; 119 | 120 | } 121 | 122 | .main-text{ 123 | position: absolute; 124 | left: 15%; 125 | top: 50%; 126 | transform: translate(-15%, -50%); 127 | width: 500px; 128 | } 129 | 130 | .main-text h1{ 131 | color: #ffffff; 132 | font-size: 2.5rem; 133 | font-weight: 600; 134 | text-shadow: 2px 2px 30px rgba(0,0,0,0.1); 135 | margin: 0px; 136 | line-height: 45px; 137 | } 138 | 139 | .main-text p{ 140 | color: #8a94a7c0; 141 | font-size: 1rem; 142 | margin: 0px; 143 | margin-top: 10px; 144 | } 145 | 146 | .main-btns{ 147 | display: flex; 148 | align-items: center; 149 | margin-top: 25px; 150 | } 151 | .main-btns a{ 152 | width:180px; 153 | height: 50px; 154 | display: flex; 155 | justify-content: center; 156 | align-items: center; 157 | text-transform: uppercase; 158 | color: #ffffff; 159 | box-shadow: 2px 2px 30px rgba(0,0,0,0.05); 160 | letter-spacing: 1px; 161 | font-size: 0.9rem; 162 | } 163 | .download-cv-btn{ 164 | background: linear-gradient(90deg, #2788e2 20%, #3b58b8); 165 | margin-right: 20px; 166 | } 167 | .hire-me-btn{ 168 | background-color: #242830; 169 | } 170 | .hire-me-btn:hover{ 171 | background-color: #0f7ce2; 172 | transition: all ease 0.3s; 173 | } 174 | 175 | .model{ 176 | width:500px; 177 | height: 500px; 178 | position: absolute; 179 | top: 50%; 180 | right: 7%; 181 | transform: translate(-7%,-50%); 182 | } 183 | .model img{ 184 | width:100%; 185 | height: 100%; 186 | object-fit: contain; 187 | } 188 | 189 | .model-bg{ 190 | position: absolute; 191 | right: 0px; 192 | top: 0px; 193 | width:45%; 194 | height: 100%; 195 | } 196 | .model-bg img{ 197 | width:100%; 198 | height: 100%; 199 | object-fit: contain; 200 | object-position: top; 201 | } 202 | 203 | /*about---------------------*/ 204 | #about{ 205 | width:90%; 206 | display: flex; 207 | justify-content: space-around; 208 | align-items: center; 209 | margin: auto auto 50px auto; 210 | } 211 | .about-text-section{ 212 | width:400px; 213 | } 214 | .skill-heading span{ 215 | color: #416cdf; 216 | font-weight: 500; 217 | text-transform: uppercase; 218 | letter-spacing: 1px; 219 | font-size: 1rem; 220 | } 221 | .s-box-container{ 222 | margin-top: 30px; 223 | } 224 | .skill-box{ 225 | display: flex; 226 | margin: 25px 0px; 227 | } 228 | .s-box-icon{ 229 | margin-right: 12px; 230 | } 231 | .s-box-icon i{ 232 | width:40px; 233 | height: 40px; 234 | border-radius: 50%; 235 | display: flex; 236 | justify-content: center; 237 | align-items: center; 238 | color: #ffffff; 239 | background-color: #968f8f11; 240 | font-size: 1.1rem; 241 | } 242 | 243 | .skill-heading p{ 244 | color: #8a94a783; 245 | font-size: 0.95rem; 246 | } 247 | .skill-box strong{ 248 | color: #ffffff; 249 | margin: 0px; 250 | font-weight: 400; 251 | font-size: 0.9rem; 252 | } 253 | .skill-box p{ 254 | color: #8a94a783; 255 | font-size: 0.9rem; 256 | } 257 | .fa-html5{ 258 | color: #e06061; 259 | } 260 | .fa-css3-alt{ 261 | color: #5d85f3; 262 | } 263 | .fa-js{ 264 | color: #f9ca31; 265 | } 266 | 267 | 268 | .skill-img{ 269 | width:300px; 270 | height: 300px; 271 | border-radius: 1rem; 272 | } 273 | .skill-img img{ 274 | width:100%; 275 | height: 100%; 276 | border-radius: 1rem; 277 | } 278 | 279 | /*Introduction------------------*/ 280 | #introduction{ 281 | display: flex; 282 | justify-content: center; 283 | align-items: center; 284 | flex-direction: column; 285 | z-index: 3; 286 | position: relative; 287 | text-align: center; 288 | max-width: 80%; 289 | border-top: 1px solid #292b32; 290 | padding: 5px 0px; 291 | border-bottom: 1px solid #292b32; 292 | margin: 5px auto; 293 | background-image: url(../images/bg.png); 294 | background-size: 950px; 295 | background-repeat: no-repeat; 296 | background-position: center; 297 | } 298 | .intro-heading{ 299 | width:60%; 300 | } 301 | .intro-heading strong{ 302 | color: #ffffff; 303 | font-size: 2.5rem; 304 | font-weight: 600; 305 | } 306 | .intro-heading p{ 307 | color: #8a94a763; 308 | } 309 | .intro-video{ 310 | margin-top: 50px; 311 | } 312 | .intro-video iframe{ 313 | width:712px; 314 | height: 400px; 315 | } 316 | 317 | :root{ 318 | --nav-width: 92px; 319 | 320 | /*===== Colores =====*/ 321 | --first-color: #0C5DF4; 322 | --bg-color: #12192C; 323 | --sub-color: #B6CEFC; 324 | --white-color: #FFF; 325 | 326 | /*===== Fuente y tipografia =====*/ 327 | --body-font: 'Poppins', sans-serif; 328 | --normal-font-size: 1rem; 329 | --small-font-size: .875rem; 330 | 331 | /*===== z index =====*/ 332 | --z-fixed: 100; 333 | } 334 | 335 | 336 | /*===== BASE =====*/ 337 | *,::before,::after{ 338 | box-sizing: border-box; 339 | } 340 | body{ 341 | position: relative; 342 | margin: 0; 343 | padding: 2rem 0 0 6.75rem; 344 | font-family: var(--body-font); 345 | font-size: var(--normal-font-size); 346 | transition: .5s; 347 | } 348 | h1{ 349 | margin: 0; 350 | } 351 | ul{ 352 | margin: 0; 353 | padding: 0; 354 | list-style: none; 355 | } 356 | a{ 357 | text-decoration: none; 358 | } 359 | 360 | /*===== l NAV =====*/ 361 | .l-navbar{ 362 | position: fixed; 363 | top: 0; 364 | left: 0; 365 | width: var(--nav-width); 366 | height: 100vh; 367 | background-color: var(--bg-color); 368 | color: var(--white-color); 369 | padding: 1.5rem 1.5rem 2rem; 370 | transition: .5s; 371 | z-index: var(--z-fixed); 372 | } 373 | 374 | /*===== NAV =====*/ 375 | .nav{ 376 | height: 100%; 377 | display: flex; 378 | flex-direction: column; 379 | justify-content: space-between; 380 | overflow: hidden; 381 | } 382 | .nav__brand{ 383 | display: grid; 384 | grid-template-columns: max-content max-content; 385 | justify-content: space-between; 386 | align-items: center; 387 | margin-bottom: 2rem; 388 | } 389 | .nav__toggle{ 390 | font-size: 1.25rem; 391 | padding: .75rem; 392 | cursor: pointer; 393 | } 394 | .nav__logo{ 395 | color: var(--white-color); 396 | font-weight: 600; 397 | } 398 | 399 | .nav__link{ 400 | display: grid; 401 | grid-template-columns: max-content max-content; 402 | align-items: center; 403 | column-gap: .75rem; 404 | padding: .75rem; 405 | color: var(--white-color); 406 | border-radius: .5rem; 407 | margin-bottom: 1rem; 408 | transition: .3s; 409 | cursor: pointer; 410 | } 411 | .nav__link:hover{ 412 | background-color: var(--first-color); 413 | } 414 | .nav__icon{ 415 | font-size: 1.25rem; 416 | } 417 | .nav__name{ 418 | font-size: var(--small-font-size); 419 | } 420 | 421 | /*Expander menu*/ 422 | .expander{ 423 | width: calc(var(--nav-width) + 9.25rem); 424 | } 425 | 426 | /*Add padding body*/ 427 | .body-pd{ 428 | padding: 2rem 0 0 16rem; 429 | } 430 | 431 | /*Active links menu*/ 432 | .active{ 433 | background-color: var(--first-color); 434 | } 435 | 436 | /*===== COLLAPSE =====*/ 437 | .collapse{ 438 | grid-template-columns: 20px max-content 1fr; 439 | } 440 | .collapse__link{ 441 | justify-self: flex-end; 442 | transition: .5s; 443 | } 444 | .collapse__menu{ 445 | display: none; 446 | padding: .75rem 2.25rem; 447 | } 448 | .collapse__sublink{ 449 | color: var(--sub-color); 450 | font-size: var(--small-font-size); 451 | } 452 | .collapse__sublink:hover{ 453 | color: var(--white-color); 454 | } 455 | 456 | /*Show collapse*/ 457 | .showCollapse{ 458 | display: block; 459 | } 460 | 461 | /*Rotate icon*/ 462 | .rotate{ 463 | transform: rotate(180deg); 464 | } 465 | 466 | #Features{ 467 | display: flex; 468 | justify-content: center; 469 | align-items: center; 470 | flex-direction: column; 471 | z-index: 3; 472 | position: relative; 473 | } 474 | .Features-heading{ 475 | color: #ffffff; 476 | font-size: 1.2rem; 477 | letter-spacing: 1px; 478 | text-transform: uppercase; 479 | width:90%; 480 | background-color: #141516; 481 | padding: 10px; 482 | display: flex; 483 | } 484 | .Features-box-container{ 485 | width:90%; 486 | margin-top: 40px; 487 | display: grid; 488 | grid-template-columns: 1fr 1fr; 489 | grid-template-rows: auto auto; 490 | } 491 | .service-box{ 492 | display: flex; 493 | flex-direction: column; 494 | justify-content: center; 495 | margin: 0px 20px 20px 20px; 496 | } 497 | .service-box i{ 498 | font-size: 2.5rem; 499 | background: linear-gradient(90deg,#2788e2 20%,#3b67b8); 500 | margin-bottom: 10px; 501 | margin-right: auto; 502 | -webkit-background-clip: text; 503 | -webkit-text-fill-color: transparent; 504 | 505 | } 506 | .service-box p{ 507 | color: #8a94a783; 508 | font-size: 0.95rem; 509 | } 510 | .service-box strong{ 511 | font-size: 1.2rem; 512 | font-weight: 400; 513 | letter-spacing: 1px; 514 | color: #e4e4e4; 515 | } 516 | 517 | .emojis{ 518 | display: flex; 519 | flex-direction: column; 520 | justify-content: center; 521 | margin: 0px 20px 20px 20px; 522 | } 523 | 524 | .emojis i{ 525 | font-size: 3.2rem; 526 | background: linear-gradient(90deg,#2788e2 20%,#3b67b8); 527 | margin-bottom: 10px; 528 | margin-right: auto; 529 | -webkit-background-clip: text; 530 | -webkit-text-fill-color: transparent; 531 | 532 | } 533 | 534 | .emojis strong{ 535 | font-size: 1.2rem; 536 | font-weight: 400; 537 | letter-spacing: 1px; 538 | color: #e4e4e4; 539 | } 540 | 541 | #get-in-touch{ 542 | width:90%; 543 | height:100px; 544 | background-color: #15181d; 545 | display: flex; 546 | margin: 60px auto; 547 | padding: 20px 40px; 548 | justify-content: space-between; 549 | align-items: center; 550 | background-image: url(../images/bg-2.png); 551 | background-position: top right; 552 | background-size: 400px; 553 | background-repeat: no-repeat; 554 | } 555 | #get-in-touch span{ 556 | color: #e4e4e4; 557 | font-size: 1.3rem; 558 | font-weight: 600; 559 | } 560 | #get-in-touch a{ 561 | color: #ffffff; 562 | width:160px; 563 | height: 50px; 564 | display: flex; 565 | justify-content: center; 566 | align-items: center; 567 | background: linear-gradient(90deg,#2788e2 20%,#3b4eb8); 568 | } 569 | 570 | #client{ 571 | width:100%; 572 | border-top: 1px solid rgba(58,58,58,0.03); 573 | border-bottom: 1px solid rgba(58,58,58,0.03); 574 | padding: 50px 0px; 575 | background-image: url("../images/bg.png"); 576 | background-position: center; 577 | background-size: 1000px; 578 | } 579 | .client-heading{ 580 | display: flex; 581 | justify-content: center; 582 | align-items: center; 583 | flex-direction: column; 584 | } 585 | .c-box-container{ 586 | display: flex; 587 | justify-content: center; 588 | align-items: center; 589 | flex-wrap: wrap; 590 | margin:20px 0px; 591 | } 592 | .client-box { 593 | width:310px; 594 | height: 350px; 595 | background-color: black; 596 | border-radius: 10px; 597 | display: flex; 598 | justify-content: center; 599 | align-items: center; 600 | flex-direction: column; 601 | padding: 10px; 602 | margin: 20px; 603 | box-shadow: 5px 10px 30px rgba(0,0,0,0.08); 604 | } 605 | .client-box img{ 606 | width:90px; 607 | height: 90px; 608 | border-radius: 50%; 609 | object-fit: cover; 610 | } 611 | .client-box strong{ 612 | color:#ff0000; 613 | margin:0px; 614 | font-size: 1.1rem; 615 | font-weight: 600; 616 | margin-top:10px; 617 | } 618 | .star{ 619 | display: flex; 620 | margin: 10px 0px 10px 0px; 621 | } 622 | .star i{ 623 | color:#ff9529; 624 | } 625 | .client-box p{ 626 | color:#747474; 627 | font-size: 0.9rem; 628 | margin:0px; 629 | text-align: center; 630 | display: block; 631 | display: -webkit-box; 632 | max-width: 80%; 633 | -webkit-line-clamp:4; 634 | -webkit-box-orient:vertical; 635 | overflow: hidden; 636 | text-overflow: ellipsis; 637 | } 638 | .client-box a{ 639 | width:190px; 640 | height: 44px; 641 | display: flex; 642 | justify-content: center; 643 | align-items: center; 644 | color:black; 645 | background-color: #ff0000; 646 | border-radius: 20px; 647 | box-shadow: 4px 10px 30px rgba(24,139,119,0.2); 648 | } 649 | .client-box a{ 650 | width:140px; 651 | margin-top: 20px; 652 | border-radius: 0px; 653 | } 654 | .client-box:hover{ 655 | transform: translateY(-10px); 656 | box-shadow: 5px 10px 30px rgba(0,0,0,0.1); 657 | background-color:black; 658 | transition: 0.5s; 659 | } 660 | 661 | .client-heading span{ 662 | font-size: 1.2rem; 663 | font-weight: 400; 664 | letter-spacing: 1px; 665 | color: #e4e4e4; 666 | } 667 | 668 | .Featur-heading{ 669 | color: #ffffff; 670 | font-size: 1.2rem; 671 | letter-spacing: 1px; 672 | text-transform: uppercase; 673 | width:90%; 674 | background-color: #141516; 675 | padding: 10px; 676 | display: flex; 677 | } 678 | 679 | footer{ 680 | display: flex; 681 | justify-content: space-around; 682 | align-items: center; 683 | background-color: #14151610; 684 | padding: 10px; 685 | margin-top: 50px; 686 | border-top: 1px solid #272729; 687 | } 688 | .copyright{ 689 | color:#ffffff; 690 | } 691 | .footer-social{ 692 | display: flex; 693 | justify-content: center; 694 | align-items: center; 695 | } 696 | .footer-social a{ 697 | width:35px; 698 | height: 35px; 699 | display:flex; 700 | justify-content: center; 701 | align-items: center; 702 | border-radius: 50%; 703 | color: #ffffff; 704 | background-color: #292b3252; 705 | margin: 5px; 706 | font-size: 0.9rem; 707 | font-weight: 400; 708 | } 709 | .footer-social a:hover{ 710 | background-color: #ff0000; 711 | transition: all ease 0.5s; 712 | } 713 | ::selection{ 714 | color: #e4e4e4; 715 | background-color: #416cdf; 716 | } 717 | .footer-social a:nth-child(1) a:hover { 718 | background-color: #1DA1F2; 719 | } 720 | 721 | .footer-social a:nth-child(2) a:hover { 722 | background-color: #ff0000; 723 | } 724 | #services, 725 | #introduction, 726 | #skills{ 727 | padding-top: 60px; 728 | } 729 | #introduction{ 730 | padding-bottom: 40px; 731 | } 732 | 733 | -------------------------------------------------------------------------------- /images/bg-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiredragonPlayz/Advanced-Website-HTML-and-CSS/33551aa091bc6078b5c4078b30e776311ee21785/images/bg-2.png -------------------------------------------------------------------------------- /images/bg-pattern-desktop.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /images/bg-pattern-mobile.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiredragonPlayz/Advanced-Website-HTML-and-CSS/33551aa091bc6078b5c4078b30e776311ee21785/images/bg.png -------------------------------------------------------------------------------- /images/create-this-cool-neon-animation-discord-avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiredragonPlayz/Advanced-Website-HTML-and-CSS/33551aa091bc6078b5c4078b30e776311ee21785/images/create-this-cool-neon-animation-discord-avatar.jpg -------------------------------------------------------------------------------- /images/f0082eb1d5c19d7ad401c4471701f7ec.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiredragonPlayz/Advanced-Website-HTML-and-CSS/33551aa091bc6078b5c4078b30e776311ee21785/images/f0082eb1d5c19d7ad401c4471701f7ec.jpg -------------------------------------------------------------------------------- /images/fav-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiredragonPlayz/Advanced-Website-HTML-and-CSS/33551aa091bc6078b5c4078b30e776311ee21785/images/fav-icon.png -------------------------------------------------------------------------------- /images/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiredragonPlayz/Advanced-Website-HTML-and-CSS/33551aa091bc6078b5c4078b30e776311ee21785/images/favicon-32x32.png -------------------------------------------------------------------------------- /images/fire.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiredragonPlayz/Advanced-Website-HTML-and-CSS/33551aa091bc6078b5c4078b30e776311ee21785/images/fire.gif -------------------------------------------------------------------------------- /images/icon-arrow-down.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /images/icon_7.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /images/illustration-box-desktop.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /images/illustration-woman-online-desktop.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /images/illustration-woman-online-mobile.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiredragonPlayz/Advanced-Website-HTML-and-CSS/33551aa091bc6078b5c4078b30e776311ee21785/images/logo.png -------------------------------------------------------------------------------- /images/model-bg.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /images/model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiredragonPlayz/Advanced-Website-HTML-and-CSS/33551aa091bc6078b5c4078b30e776311ee21785/images/model.png -------------------------------------------------------------------------------- /images/skill2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiredragonPlayz/Advanced-Website-HTML-and-CSS/33551aa091bc6078b5c4078b30e776311ee21785/images/skill2.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 7 | 9 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | Flame Bot- Disord Bot 18 | 19 | 20 | 22 | 23 | 24 | 25 | 28 | 29 | 30 | 31 | 32 | 33 | 77 | 78 | 79 | 80 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 115 | 116 |
117 |
118 |

FLAME BOT

119 |

Flame Bot is a multipurpose bot with Moderation, Leveling System, Fun commands, Utility Commands, 120 | Giveaways command, Music, and more!

121 |
122 | Invite Me 123 | Support Server 124 |
125 |
126 | 127 | 128 | 129 |
130 | 131 |
132 |
133 | 134 |
135 | 136 |
137 | 138 |
139 | About Flame Bot 140 |

Flame Bot was made by Javascript v12 Language, is a multi-purpose and a user-friendly bot which gives 141 | you a lot of fun commands, Utility Commands! Moderation Commands! and more!

142 | 143 |
144 | 145 |
146 | 147 |
148 | 149 |
150 | 1 151 |
152 | 153 |
154 | Name 155 |

Flame Bot (796279185080582185)

156 | 157 | 158 |
159 |
160 | 161 |
162 | 163 |
164 | 2 165 |
166 | 167 |
168 | Version 169 |

1.5.8

170 | 171 | 172 |
173 |
174 | 175 |
176 | 177 |
178 | 3 179 |
180 | 181 |
182 | Bot library 183 |

Discord.js (Javascript)

184 | 185 | 186 |
187 |
188 |
189 | 190 |
191 | 4 192 |
193 | 194 |
195 | Default Prefix 196 |

f!

197 | 198 | 199 | 200 |
201 |
202 | 203 |
204 |
205 | 206 | 207 |
208 | 210 |
211 |
212 |
213 | 214 |
215 | 216 |
217 | Introduction 218 |

Hello, In this video you can get how to use Flame Bot. After Watching this video you know how does Flame 219 | Bot works, Thanks!

220 |
221 | 222 |
223 | 224 |
225 | 226 |
227 | 228 | 229 | 230 |
231 | 232 | 233 | Features 234 | 235 |
236 | 237 |
238 | 239 | 240 | 241 | Easy To Use 242 | 243 |

A bot that can help you with your server, just type f!help to get all the commands of the bot

244 |
245 | 246 |
247 | 248 | 249 | 250 | 24/7 Online 251 | 252 |

Flame Bot is hosted on a very good host so it will be on 24/7, There is nothing to worry about 253 | hosting in Flame Bot. 254 |

255 |
256 | 257 |
258 | 259 | 260 | 261 | Customizable Prefix 262 | 263 |

You can customize Flame Bot prefix in your server. Flame Bot provides facility to Customize bot 264 | prefix in every server.

265 |
266 | 267 |
268 | 269 | 270 | 271 | 100+ Commands 272 | 273 |

Yes Flame Bot has more than 100 commands! and more commands can be added in future. 274 |

275 |
276 |
277 |
278 |
279 | Still not conviced for inviting, Let test the Bot on the Support server. 280 | Support Server 281 |
282 | 283 | 284 |
285 | 286 |
287 | 288 | Developer 289 | 290 |
291 | 292 |
293 | 294 | 295 | 296 | 303 | 304 |

FiredragonPlayz

305 | 306 | 307 |
308 |
309 |
310 | 311 | 312 | 313 | Discord 314 | 315 | 316 |
317 | 318 | Github 320 |
321 | 322 | 323 |
324 | 325 | 351 | 352 | 353 | 354 | 355 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | const express = require('express') 2 | const app = express() 3 | app.get('/',(req, res) => res.sendFile(__dirname+'/index.html')) 4 | app.use("/css", express.static(__dirname + "/css")); 5 | 6 | app.get('/invite', (req, res) => res.redirect('https://dsc.gg/flamebot') 7 | 8 | ) 9 | 10 | app.listen(3000) -------------------------------------------------------------------------------- /js/main.js: -------------------------------------------------------------------------------- 1 | const showMenu = (toggleId, navbarId, bodyId) => { 2 | const toggle = document.getElementById(toggleId), 3 | navbar = document.getElementById(navbarId), 4 | bodypadding = document.getElementById(bodyId) 5 | 6 | if (toggle && navbar) { 7 | toggle.addEventListener('click', () => { 8 | navbar.classList.toggle('expander') 9 | 10 | bodypadding.classList.toggle('body-pd') 11 | }) 12 | } 13 | } 14 | showMenu('nav-toggle', 'navbar', 'body-pd') 15 | 16 | /*===== LINK ACTIVE =====*/ 17 | const linkColor = document.querySelectorAll('.nav__link') 18 | function colorLink() { 19 | linkColor.forEach(l => l.classList.remove('active')) 20 | this.classList.add('active') 21 | } 22 | linkColor.forEach(l => l.addEventListener('click', colorLink)) 23 | 24 | 25 | /*===== COLLAPSE MENU =====*/ 26 | const linkCollapse = document.getElementsByClassName('collapse__link') 27 | var i 28 | 29 | for (i = 0; i < linkCollapse.length; i++) { 30 | linkCollapse[i].addEventListener('click', function () { 31 | const collapseMenu = this.nextElementSibling 32 | collapseMenu.classList.toggle('showCollapse') 33 | 34 | const rotate = collapseMenu.previousElementSibling 35 | rotate.classList.toggle('rotate') 36 | }) 37 | } --------------------------------------------------------------------------------