├── about ├── index.html └── styles.css ├── img ├── favicon-original.png ├── favicon.png ├── globe-large.jpg ├── globe-medium.jpg ├── globe-medium.png ├── globe-small.jpg ├── globe-small.png ├── screenshot1-2.png └── screenshot3-4.png ├── index.html ├── script.js ├── styles.css └── test ├── correct.css ├── correct.html ├── quiz.css ├── quiz.html └── quiz.js /about/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKNITH/PLAY-WITH-FLAG/HEAD/about/index.html -------------------------------------------------------------------------------- /about/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKNITH/PLAY-WITH-FLAG/HEAD/about/styles.css -------------------------------------------------------------------------------- /img/favicon-original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKNITH/PLAY-WITH-FLAG/HEAD/img/favicon-original.png -------------------------------------------------------------------------------- /img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKNITH/PLAY-WITH-FLAG/HEAD/img/favicon.png -------------------------------------------------------------------------------- /img/globe-large.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKNITH/PLAY-WITH-FLAG/HEAD/img/globe-large.jpg -------------------------------------------------------------------------------- /img/globe-medium.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKNITH/PLAY-WITH-FLAG/HEAD/img/globe-medium.jpg -------------------------------------------------------------------------------- /img/globe-medium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKNITH/PLAY-WITH-FLAG/HEAD/img/globe-medium.png -------------------------------------------------------------------------------- /img/globe-small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKNITH/PLAY-WITH-FLAG/HEAD/img/globe-small.jpg -------------------------------------------------------------------------------- /img/globe-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKNITH/PLAY-WITH-FLAG/HEAD/img/globe-small.png -------------------------------------------------------------------------------- /img/screenshot1-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKNITH/PLAY-WITH-FLAG/HEAD/img/screenshot1-2.png -------------------------------------------------------------------------------- /img/screenshot3-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKNITH/PLAY-WITH-FLAG/HEAD/img/screenshot3-4.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKNITH/PLAY-WITH-FLAG/HEAD/index.html -------------------------------------------------------------------------------- /script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKNITH/PLAY-WITH-FLAG/HEAD/script.js -------------------------------------------------------------------------------- /styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKNITH/PLAY-WITH-FLAG/HEAD/styles.css -------------------------------------------------------------------------------- /test/correct.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKNITH/PLAY-WITH-FLAG/HEAD/test/correct.css -------------------------------------------------------------------------------- /test/correct.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKNITH/PLAY-WITH-FLAG/HEAD/test/correct.html -------------------------------------------------------------------------------- /test/quiz.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKNITH/PLAY-WITH-FLAG/HEAD/test/quiz.css -------------------------------------------------------------------------------- /test/quiz.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RKNITH/PLAY-WITH-FLAG/HEAD/test/quiz.html -------------------------------------------------------------------------------- /test/quiz.js: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------