├── .gitattributes ├── JS └── main.js ├── README.md ├── best.html ├── fonts ├── Gotham-Black.otf └── PTSans-Bold.ttf ├── img ├── Fap-tap.png ├── campfire.png ├── clock-circular-outline.png ├── eye.png └── no-minors.png ├── index.html └── style └── stylesheet.css /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucalorenzo04/Tap-fap/HEAD/.gitattributes -------------------------------------------------------------------------------- /JS/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucalorenzo04/Tap-fap/HEAD/JS/main.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucalorenzo04/Tap-fap/HEAD/README.md -------------------------------------------------------------------------------- /best.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucalorenzo04/Tap-fap/HEAD/best.html -------------------------------------------------------------------------------- /fonts/Gotham-Black.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucalorenzo04/Tap-fap/HEAD/fonts/Gotham-Black.otf -------------------------------------------------------------------------------- /fonts/PTSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucalorenzo04/Tap-fap/HEAD/fonts/PTSans-Bold.ttf -------------------------------------------------------------------------------- /img/Fap-tap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucalorenzo04/Tap-fap/HEAD/img/Fap-tap.png -------------------------------------------------------------------------------- /img/campfire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucalorenzo04/Tap-fap/HEAD/img/campfire.png -------------------------------------------------------------------------------- /img/clock-circular-outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucalorenzo04/Tap-fap/HEAD/img/clock-circular-outline.png -------------------------------------------------------------------------------- /img/eye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucalorenzo04/Tap-fap/HEAD/img/eye.png -------------------------------------------------------------------------------- /img/no-minors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucalorenzo04/Tap-fap/HEAD/img/no-minors.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucalorenzo04/Tap-fap/HEAD/index.html -------------------------------------------------------------------------------- /style/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucalorenzo04/Tap-fap/HEAD/style/stylesheet.css --------------------------------------------------------------------------------