├── .htaccess ├── .vscode └── settings.json ├── Added new link to navbar └── index.html ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── aboutus.html ├── assets ├── helper.css ├── index.js └── style.css ├── color.html ├── file.html ├── icons.html ├── index update .html ├── index.html ├── indexonchange.html ├── shadow.html └── static ├── about.css ├── about.js ├── color.css ├── color.js ├── file.css ├── icons.css ├── index.css ├── index.js └── indexUpdate.css /.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithyapaib/downloadTimeCalculator/HEAD/.htaccess -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "liveServer.settings.port": 5501 3 | } -------------------------------------------------------------------------------- /Added new link to navbar/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithyapaib/downloadTimeCalculator/HEAD/Added new link to navbar/index.html -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithyapaib/downloadTimeCalculator/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithyapaib/downloadTimeCalculator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithyapaib/downloadTimeCalculator/HEAD/README.md -------------------------------------------------------------------------------- /aboutus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithyapaib/downloadTimeCalculator/HEAD/aboutus.html -------------------------------------------------------------------------------- /assets/helper.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithyapaib/downloadTimeCalculator/HEAD/assets/helper.css -------------------------------------------------------------------------------- /assets/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithyapaib/downloadTimeCalculator/HEAD/assets/index.js -------------------------------------------------------------------------------- /assets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithyapaib/downloadTimeCalculator/HEAD/assets/style.css -------------------------------------------------------------------------------- /color.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithyapaib/downloadTimeCalculator/HEAD/color.html -------------------------------------------------------------------------------- /file.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithyapaib/downloadTimeCalculator/HEAD/file.html -------------------------------------------------------------------------------- /icons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithyapaib/downloadTimeCalculator/HEAD/icons.html -------------------------------------------------------------------------------- /index update .html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithyapaib/downloadTimeCalculator/HEAD/index update .html -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithyapaib/downloadTimeCalculator/HEAD/index.html -------------------------------------------------------------------------------- /indexonchange.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithyapaib/downloadTimeCalculator/HEAD/indexonchange.html -------------------------------------------------------------------------------- /shadow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithyapaib/downloadTimeCalculator/HEAD/shadow.html -------------------------------------------------------------------------------- /static/about.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithyapaib/downloadTimeCalculator/HEAD/static/about.css -------------------------------------------------------------------------------- /static/about.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithyapaib/downloadTimeCalculator/HEAD/static/about.js -------------------------------------------------------------------------------- /static/color.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithyapaib/downloadTimeCalculator/HEAD/static/color.css -------------------------------------------------------------------------------- /static/color.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithyapaib/downloadTimeCalculator/HEAD/static/color.js -------------------------------------------------------------------------------- /static/file.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithyapaib/downloadTimeCalculator/HEAD/static/file.css -------------------------------------------------------------------------------- /static/icons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithyapaib/downloadTimeCalculator/HEAD/static/icons.css -------------------------------------------------------------------------------- /static/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithyapaib/downloadTimeCalculator/HEAD/static/index.css -------------------------------------------------------------------------------- /static/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithyapaib/downloadTimeCalculator/HEAD/static/index.js -------------------------------------------------------------------------------- /static/indexUpdate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithyapaib/downloadTimeCalculator/HEAD/static/indexUpdate.css --------------------------------------------------------------------------------