├── images ├── Thumbs.db ├── steam.png ├── facebook.png └── twitter.png ├── bootstrap ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 ├── js │ ├── npm.js │ └── bootstrap.min.js └── css │ ├── bootstrap-theme.min.css │ ├── bootstrap-theme.css │ └── bootstrap-theme.css.map ├── js ├── menu.js └── testpage.js ├── README.md ├── style.css ├── testpage.html ├── contactus.html ├── viewdonors.html └── index.html /images/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamemann/Bootstrap-Testing-Website/HEAD/images/Thumbs.db -------------------------------------------------------------------------------- /images/steam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamemann/Bootstrap-Testing-Website/HEAD/images/steam.png -------------------------------------------------------------------------------- /images/facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamemann/Bootstrap-Testing-Website/HEAD/images/facebook.png -------------------------------------------------------------------------------- /images/twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamemann/Bootstrap-Testing-Website/HEAD/images/twitter.png -------------------------------------------------------------------------------- /bootstrap/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamemann/Bootstrap-Testing-Website/HEAD/bootstrap/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /bootstrap/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamemann/Bootstrap-Testing-Website/HEAD/bootstrap/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /bootstrap/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamemann/Bootstrap-Testing-Website/HEAD/bootstrap/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /bootstrap/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamemann/Bootstrap-Testing-Website/HEAD/bootstrap/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /js/menu.js: -------------------------------------------------------------------------------- 1 | var bMMO = false; // Mobile Menu Opened 2 | 3 | function OpenMobileMenu() 4 | { 5 | if (!bMMO) 6 | { 7 | var i = document.getElementsByClassName("mobilemenu"); 8 | i[0].style.display = "block"; 9 | 10 | bMMO = true; 11 | } 12 | else 13 | { 14 | var i = document.getElementsByClassName("mobilemenu"); 15 | i[0].style.display = "none"; 16 | 17 | bMMO = false; 18 | } 19 | } -------------------------------------------------------------------------------- /bootstrap/js/npm.js: -------------------------------------------------------------------------------- 1 | // This file is autogenerated via the `commonjs` Grunt task. You can require() this file in a CommonJS environment. 2 | require('../../js/transition.js') 3 | require('../../js/alert.js') 4 | require('../../js/button.js') 5 | require('../../js/carousel.js') 6 | require('../../js/collapse.js') 7 | require('../../js/dropdown.js') 8 | require('../../js/modal.js') 9 | require('../../js/tooltip.js') 10 | require('../../js/popover.js') 11 | require('../../js/scrollspy.js') 12 | require('../../js/tab.js') 13 | require('../../js/affix.js') -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Information 2 | This is a Bootstrap testing website. This is the first website I created with Bootstrap. This project does not include any PHP code whatsoever. 3 | 4 | # Live Version 5 | A live version of the testing website can be found here: http://gmann.gflclan.com/testsite/index.html 6 | 7 | # FAQ 8 | Q: Can I change the file extensions from PHP to HTML? 9 | 10 | A: Yes, this project does not include any PHP code at the moment. 11 | 12 | Q: Do you plan on releasing other Bootstrap websites? 13 | 14 | A: There is a possibility I will be releasing other web development projects using Bootstrap. 15 | 16 | Q: Am I new to Bootstrap? 17 | 18 | A: Yes, I am. This is my first project I made using Bootstrap. All my other websites are fully made from scratch. I find Bootstrap very easy to use. Although Bootstrap is simple, it is very powerful. If I combine my PHP experience with Bootstrap, I'll be able to make a full-functioning website in no time! -------------------------------------------------------------------------------- /js/testpage.js: -------------------------------------------------------------------------------- 1 | // I do not use Javascript often. I plan on learning it though! 2 | var i = 0; 3 | var sResults = ""; 4 | 5 | function AddMe() 6 | { 7 | sResults = ""; 8 | i++; 9 | sResults += i; 10 | 11 | document.getElementById("AddMeContent").innerHTML = sResults; 12 | } 13 | 14 | function DeleteMe() 15 | { 16 | sResults = ""; 17 | i--; 18 | sResults += i; 19 | 20 | document.getElementById("AddMeContent").innerHTML = sResults; 21 | } 22 | 23 | // Let's Create A Counter Game 24 | var iCounter = 0; 25 | var iStartTime = 0; 26 | var iEndTime = 0; 27 | var iTotalTime = 0; 28 | var iCoolDown = 0; 29 | var bEndGame = false; 30 | 31 | function GameAction() 32 | { 33 | var iCurTime = Math.floor(Date.now() / 1000); 34 | 35 | if (iCurTime < iCoolDown) 36 | { 37 | document.getElementById("GameButton").innerHTML = (iCoolDown - iCurTime) + " seconds"; 38 | return; 39 | } 40 | else 41 | { 42 | document.getElementById("GameButton").innerHTML = "Click Me!"; 43 | } 44 | 45 | iCounter++; 46 | 47 | document.getElementById("GameCounter").innerHTML = iCounter; 48 | 49 | if (iCounter == 1) 50 | { 51 | // Game just started. 52 | iStartTime = Math.floor(Date.now() / 1000); 53 | document.getElementById("GameMessage").innerHTML = "
Welcome to the testing page!
43 |Content:
44 | 45 |Alert-Success class!
47 |Alert-Warning class!
51 |054 | 55 | 56 | 57 |
064 | 65 |
| First Name | 43 |Last Name | 44 |Amount | 45 |
|---|---|---|
| Christian | 48 |Deacon | 49 |$1023.24 | 50 |
| Eddie | 54 |Binks | 55 |$432.00 | 56 |
| Liam | 60 |Edwards | 61 |$205.30 | 62 |
| Bill | 66 |Jennings | 67 |$100.30 | 68 |
| Ashley | 72 |Mills | 73 |$81.60 | 74 |
| Henry | 78 |Pullux | 79 |$50.00 | 80 |
| Rich | 84 |Flowd | 85 |$30.00 | 86 |
| Anna | 90 |Flowd | 91 |$13.88 | 92 |
| Joey | 96 |West | 97 |$5.00 | 98 |
| Jill | 102 |Klien | 103 |$5.00 | 104 |
The source code of this website has been released on GitHub! I wish I could automate the articles with PHP (using MySQL), but I want to keep this website strictly to HTML, CSS, and JavaScript only.
47 | 48 |EOWG has been officially released! We will be specializing in game-servers. We will ensure that every one of our servers receive the correct amount of attention to thrive.
53 |54 |57 |EOWG hopefully will be released soon. Can't wait!
55 | 56 |
It has begun!
58 |