├── .gitattributes ├── .gitignore ├── .nojekyll ├── LICENSE ├── README.md ├── css └── notepad.css ├── favicon.ico ├── img ├── icon.png └── social-media-card.png ├── index.html └── js └── notepad.js /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/le717/notepad/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | Testing/ 2 | -------------------------------------------------------------------------------- /.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/le717/notepad/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/le717/notepad/HEAD/README.md -------------------------------------------------------------------------------- /css/notepad.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/le717/notepad/HEAD/css/notepad.css -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/le717/notepad/HEAD/favicon.ico -------------------------------------------------------------------------------- /img/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/le717/notepad/HEAD/img/icon.png -------------------------------------------------------------------------------- /img/social-media-card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/le717/notepad/HEAD/img/social-media-card.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/le717/notepad/HEAD/index.html -------------------------------------------------------------------------------- /js/notepad.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/le717/notepad/HEAD/js/notepad.js --------------------------------------------------------------------------------