├── .gitattributes ├── .gitignore ├── CONTRIBUTING.md ├── README.md ├── css └── app.css ├── img ├── geometry2.png └── snippet.png ├── index.html └── js └── app.js /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandraisrael/Memory-Game-fend/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandraisrael/Memory-Game-fend/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandraisrael/Memory-Game-fend/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandraisrael/Memory-Game-fend/HEAD/README.md -------------------------------------------------------------------------------- /css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandraisrael/Memory-Game-fend/HEAD/css/app.css -------------------------------------------------------------------------------- /img/geometry2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandraisrael/Memory-Game-fend/HEAD/img/geometry2.png -------------------------------------------------------------------------------- /img/snippet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandraisrael/Memory-Game-fend/HEAD/img/snippet.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandraisrael/Memory-Game-fend/HEAD/index.html -------------------------------------------------------------------------------- /js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandraisrael/Memory-Game-fend/HEAD/js/app.js --------------------------------------------------------------------------------