├── .github ├── FUNDING.yml └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── content-editable └── index.html ├── data-attribute └── index.html ├── datalist └── index.html ├── details └── index.html ├── dialog └── index.html ├── favicons ├── android-icon-144x144.png ├── android-icon-192x192.png ├── android-icon-36x36.png ├── android-icon-48x48.png ├── android-icon-72x72.png ├── android-icon-96x96.png ├── apple-icon-114x114.png ├── apple-icon-120x120.png ├── apple-icon-144x144.png ├── apple-icon-152x152.png ├── apple-icon-180x180.png ├── apple-icon-57x57.png ├── apple-icon-60x60.png ├── apple-icon-72x72.png ├── apple-icon-76x76.png ├── apple-icon-precomposed.png ├── apple-icon.png ├── browserconfig.xml ├── favicon-16x16.png ├── favicon-32x32.png ├── favicon-96x96.png ├── favicon.ico ├── manifest.json ├── ms-icon-144x144.png ├── ms-icon-150x150.png ├── ms-icon-310x310.png └── ms-icon-70x70.png ├── home.svg ├── html5.png ├── iframe └── index.html ├── index.html ├── inputs └── index.html ├── lazy-loading └── index.html ├── main.css ├── map ├── circus.jpg ├── clown.htm ├── clown.jpg ├── elephant.htm ├── elephant.jpg ├── horse.htm ├── horse.jpg ├── index.html ├── lion.htm └── lion.jpg ├── mark └── index.html ├── meter └── index.html ├── output └── index.html └── range └── index.html /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: [atapas] 4 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atapas/html-tips-tricks/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atapas/html-tips-tricks/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atapas/html-tips-tricks/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atapas/html-tips-tricks/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atapas/html-tips-tricks/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atapas/html-tips-tricks/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atapas/html-tips-tricks/HEAD/README.md -------------------------------------------------------------------------------- /content-editable/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atapas/html-tips-tricks/HEAD/content-editable/index.html -------------------------------------------------------------------------------- /data-attribute/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atapas/html-tips-tricks/HEAD/data-attribute/index.html -------------------------------------------------------------------------------- /datalist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atapas/html-tips-tricks/HEAD/datalist/index.html -------------------------------------------------------------------------------- /details/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atapas/html-tips-tricks/HEAD/details/index.html -------------------------------------------------------------------------------- /dialog/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atapas/html-tips-tricks/HEAD/dialog/index.html -------------------------------------------------------------------------------- /favicons/android-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atapas/html-tips-tricks/HEAD/favicons/android-icon-144x144.png -------------------------------------------------------------------------------- /favicons/android-icon-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atapas/html-tips-tricks/HEAD/favicons/android-icon-192x192.png -------------------------------------------------------------------------------- /favicons/android-icon-36x36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atapas/html-tips-tricks/HEAD/favicons/android-icon-36x36.png -------------------------------------------------------------------------------- /favicons/android-icon-48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atapas/html-tips-tricks/HEAD/favicons/android-icon-48x48.png -------------------------------------------------------------------------------- /favicons/android-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atapas/html-tips-tricks/HEAD/favicons/android-icon-72x72.png -------------------------------------------------------------------------------- /favicons/android-icon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atapas/html-tips-tricks/HEAD/favicons/android-icon-96x96.png -------------------------------------------------------------------------------- /favicons/apple-icon-114x114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atapas/html-tips-tricks/HEAD/favicons/apple-icon-114x114.png -------------------------------------------------------------------------------- /favicons/apple-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atapas/html-tips-tricks/HEAD/favicons/apple-icon-120x120.png -------------------------------------------------------------------------------- /favicons/apple-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atapas/html-tips-tricks/HEAD/favicons/apple-icon-144x144.png -------------------------------------------------------------------------------- /favicons/apple-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atapas/html-tips-tricks/HEAD/favicons/apple-icon-152x152.png -------------------------------------------------------------------------------- /favicons/apple-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atapas/html-tips-tricks/HEAD/favicons/apple-icon-180x180.png -------------------------------------------------------------------------------- /favicons/apple-icon-57x57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atapas/html-tips-tricks/HEAD/favicons/apple-icon-57x57.png -------------------------------------------------------------------------------- /favicons/apple-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atapas/html-tips-tricks/HEAD/favicons/apple-icon-60x60.png -------------------------------------------------------------------------------- /favicons/apple-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atapas/html-tips-tricks/HEAD/favicons/apple-icon-72x72.png -------------------------------------------------------------------------------- /favicons/apple-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atapas/html-tips-tricks/HEAD/favicons/apple-icon-76x76.png -------------------------------------------------------------------------------- /favicons/apple-icon-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atapas/html-tips-tricks/HEAD/favicons/apple-icon-precomposed.png -------------------------------------------------------------------------------- /favicons/apple-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atapas/html-tips-tricks/HEAD/favicons/apple-icon.png -------------------------------------------------------------------------------- /favicons/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atapas/html-tips-tricks/HEAD/favicons/browserconfig.xml -------------------------------------------------------------------------------- /favicons/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atapas/html-tips-tricks/HEAD/favicons/favicon-16x16.png -------------------------------------------------------------------------------- /favicons/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atapas/html-tips-tricks/HEAD/favicons/favicon-32x32.png -------------------------------------------------------------------------------- /favicons/favicon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atapas/html-tips-tricks/HEAD/favicons/favicon-96x96.png -------------------------------------------------------------------------------- /favicons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atapas/html-tips-tricks/HEAD/favicons/favicon.ico -------------------------------------------------------------------------------- /favicons/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atapas/html-tips-tricks/HEAD/favicons/manifest.json -------------------------------------------------------------------------------- /favicons/ms-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atapas/html-tips-tricks/HEAD/favicons/ms-icon-144x144.png -------------------------------------------------------------------------------- /favicons/ms-icon-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atapas/html-tips-tricks/HEAD/favicons/ms-icon-150x150.png -------------------------------------------------------------------------------- /favicons/ms-icon-310x310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atapas/html-tips-tricks/HEAD/favicons/ms-icon-310x310.png -------------------------------------------------------------------------------- /favicons/ms-icon-70x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atapas/html-tips-tricks/HEAD/favicons/ms-icon-70x70.png -------------------------------------------------------------------------------- /home.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atapas/html-tips-tricks/HEAD/home.svg -------------------------------------------------------------------------------- /html5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atapas/html-tips-tricks/HEAD/html5.png -------------------------------------------------------------------------------- /iframe/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atapas/html-tips-tricks/HEAD/iframe/index.html -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atapas/html-tips-tricks/HEAD/index.html -------------------------------------------------------------------------------- /inputs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atapas/html-tips-tricks/HEAD/inputs/index.html -------------------------------------------------------------------------------- /lazy-loading/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atapas/html-tips-tricks/HEAD/lazy-loading/index.html -------------------------------------------------------------------------------- /main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atapas/html-tips-tricks/HEAD/main.css -------------------------------------------------------------------------------- /map/circus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atapas/html-tips-tricks/HEAD/map/circus.jpg -------------------------------------------------------------------------------- /map/clown.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atapas/html-tips-tricks/HEAD/map/clown.htm -------------------------------------------------------------------------------- /map/clown.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atapas/html-tips-tricks/HEAD/map/clown.jpg -------------------------------------------------------------------------------- /map/elephant.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atapas/html-tips-tricks/HEAD/map/elephant.htm -------------------------------------------------------------------------------- /map/elephant.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atapas/html-tips-tricks/HEAD/map/elephant.jpg -------------------------------------------------------------------------------- /map/horse.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atapas/html-tips-tricks/HEAD/map/horse.htm -------------------------------------------------------------------------------- /map/horse.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atapas/html-tips-tricks/HEAD/map/horse.jpg -------------------------------------------------------------------------------- /map/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atapas/html-tips-tricks/HEAD/map/index.html -------------------------------------------------------------------------------- /map/lion.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atapas/html-tips-tricks/HEAD/map/lion.htm -------------------------------------------------------------------------------- /map/lion.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atapas/html-tips-tricks/HEAD/map/lion.jpg -------------------------------------------------------------------------------- /mark/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atapas/html-tips-tricks/HEAD/mark/index.html -------------------------------------------------------------------------------- /meter/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atapas/html-tips-tricks/HEAD/meter/index.html -------------------------------------------------------------------------------- /output/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atapas/html-tips-tricks/HEAD/output/index.html -------------------------------------------------------------------------------- /range/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atapas/html-tips-tricks/HEAD/range/index.html --------------------------------------------------------------------------------