├── weather ├── bg.jpg ├── icon.png └── index.html ├── fullpagejs implementation ├── init.js ├── style.css ├── index.html ├── fullpage.min.css ├── LICENSE └── fullpage.min.js ├── dark mode ├── assets │ └── dark_mode-black-48dp.svg └── index.html ├── book-list ├── index.html └── index.js ├── IP_TRACKER └── index.html └── text-to-speech └── index.html /weather/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/A-Little-Hat/Web-Projects/HEAD/weather/bg.jpg -------------------------------------------------------------------------------- /weather/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/A-Little-Hat/Web-Projects/HEAD/weather/icon.png -------------------------------------------------------------------------------- /fullpagejs implementation/init.js: -------------------------------------------------------------------------------- 1 | new fullpage('#fullpage', { 2 | //options here 3 | licenseKey: 'YOUR KEY HERE', 4 | autoScrolling: true, 5 | scrollHorizontally: true 6 | }); 7 | 8 | fullpage_api.setAllowScrolling(true); -------------------------------------------------------------------------------- /fullpagejs implementation/style.css: -------------------------------------------------------------------------------- 1 | .s1 { 2 | background-color: rgb(255, 173, 173); 3 | } 4 | 5 | .s2 { 6 | background-color: rgb(160, 236, 255) 7 | } 8 | 9 | .s3 { 10 | background-color: rgb(227, 253, 81) 11 | } 12 | 13 | .s4 { 14 | background-color: rgb(140, 255, 136) 15 | } 16 | .t{ 17 | text-align: center; 18 | } -------------------------------------------------------------------------------- /dark mode/assets/dark_mode-black-48dp.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fullpagejs implementation/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |
5 | 6 | 7 | 8 || Name | 32 |Author | 33 |ISBN | 34 |Action | 35 | 36 | 37 |
45 |