├── .gitattributes ├── README.md ├── Screenshot_4.jpg ├── fontawesome-free ├── LICENSE.txt ├── css │ ├── all.css │ ├── all.min.css │ ├── brands.css │ ├── brands.min.css │ ├── fontawesome.css │ ├── fontawesome.min.css │ ├── regular.css │ ├── regular.min.css │ ├── solid.css │ ├── solid.min.css │ ├── svg-with-js.css │ ├── svg-with-js.min.css │ ├── v4-shims.css │ └── v4-shims.min.css └── webfonts │ ├── fa-brands-400.eot │ ├── fa-brands-400.svg │ ├── fa-brands-400.ttf │ ├── fa-brands-400.woff │ ├── fa-brands-400.woff2 │ ├── fa-regular-400.eot │ ├── fa-regular-400.svg │ ├── fa-regular-400.ttf │ ├── fa-regular-400.woff │ ├── fa-regular-400.woff2 │ ├── fa-solid-900.eot │ ├── fa-solid-900.svg │ ├── fa-solid-900.ttf │ ├── fa-solid-900.woff │ └── fa-solid-900.woff2 ├── index.html └── style.css /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trananhtuat/list-item-html-css/HEAD/.gitattributes -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trananhtuat/list-item-html-css/HEAD/README.md -------------------------------------------------------------------------------- /Screenshot_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trananhtuat/list-item-html-css/HEAD/Screenshot_4.jpg -------------------------------------------------------------------------------- /fontawesome-free/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trananhtuat/list-item-html-css/HEAD/fontawesome-free/LICENSE.txt -------------------------------------------------------------------------------- /fontawesome-free/css/all.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trananhtuat/list-item-html-css/HEAD/fontawesome-free/css/all.css -------------------------------------------------------------------------------- /fontawesome-free/css/all.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trananhtuat/list-item-html-css/HEAD/fontawesome-free/css/all.min.css -------------------------------------------------------------------------------- /fontawesome-free/css/brands.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trananhtuat/list-item-html-css/HEAD/fontawesome-free/css/brands.css -------------------------------------------------------------------------------- /fontawesome-free/css/brands.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trananhtuat/list-item-html-css/HEAD/fontawesome-free/css/brands.min.css -------------------------------------------------------------------------------- /fontawesome-free/css/fontawesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trananhtuat/list-item-html-css/HEAD/fontawesome-free/css/fontawesome.css -------------------------------------------------------------------------------- /fontawesome-free/css/fontawesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trananhtuat/list-item-html-css/HEAD/fontawesome-free/css/fontawesome.min.css -------------------------------------------------------------------------------- /fontawesome-free/css/regular.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trananhtuat/list-item-html-css/HEAD/fontawesome-free/css/regular.css -------------------------------------------------------------------------------- /fontawesome-free/css/regular.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trananhtuat/list-item-html-css/HEAD/fontawesome-free/css/regular.min.css -------------------------------------------------------------------------------- /fontawesome-free/css/solid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trananhtuat/list-item-html-css/HEAD/fontawesome-free/css/solid.css -------------------------------------------------------------------------------- /fontawesome-free/css/solid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trananhtuat/list-item-html-css/HEAD/fontawesome-free/css/solid.min.css -------------------------------------------------------------------------------- /fontawesome-free/css/svg-with-js.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trananhtuat/list-item-html-css/HEAD/fontawesome-free/css/svg-with-js.css -------------------------------------------------------------------------------- /fontawesome-free/css/svg-with-js.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trananhtuat/list-item-html-css/HEAD/fontawesome-free/css/svg-with-js.min.css -------------------------------------------------------------------------------- /fontawesome-free/css/v4-shims.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trananhtuat/list-item-html-css/HEAD/fontawesome-free/css/v4-shims.css -------------------------------------------------------------------------------- /fontawesome-free/css/v4-shims.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trananhtuat/list-item-html-css/HEAD/fontawesome-free/css/v4-shims.min.css -------------------------------------------------------------------------------- /fontawesome-free/webfonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trananhtuat/list-item-html-css/HEAD/fontawesome-free/webfonts/fa-brands-400.eot -------------------------------------------------------------------------------- /fontawesome-free/webfonts/fa-brands-400.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trananhtuat/list-item-html-css/HEAD/fontawesome-free/webfonts/fa-brands-400.svg -------------------------------------------------------------------------------- /fontawesome-free/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trananhtuat/list-item-html-css/HEAD/fontawesome-free/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /fontawesome-free/webfonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trananhtuat/list-item-html-css/HEAD/fontawesome-free/webfonts/fa-brands-400.woff -------------------------------------------------------------------------------- /fontawesome-free/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trananhtuat/list-item-html-css/HEAD/fontawesome-free/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /fontawesome-free/webfonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trananhtuat/list-item-html-css/HEAD/fontawesome-free/webfonts/fa-regular-400.eot -------------------------------------------------------------------------------- /fontawesome-free/webfonts/fa-regular-400.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trananhtuat/list-item-html-css/HEAD/fontawesome-free/webfonts/fa-regular-400.svg -------------------------------------------------------------------------------- /fontawesome-free/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trananhtuat/list-item-html-css/HEAD/fontawesome-free/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /fontawesome-free/webfonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trananhtuat/list-item-html-css/HEAD/fontawesome-free/webfonts/fa-regular-400.woff -------------------------------------------------------------------------------- /fontawesome-free/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trananhtuat/list-item-html-css/HEAD/fontawesome-free/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /fontawesome-free/webfonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trananhtuat/list-item-html-css/HEAD/fontawesome-free/webfonts/fa-solid-900.eot -------------------------------------------------------------------------------- /fontawesome-free/webfonts/fa-solid-900.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trananhtuat/list-item-html-css/HEAD/fontawesome-free/webfonts/fa-solid-900.svg -------------------------------------------------------------------------------- /fontawesome-free/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trananhtuat/list-item-html-css/HEAD/fontawesome-free/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /fontawesome-free/webfonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trananhtuat/list-item-html-css/HEAD/fontawesome-free/webfonts/fa-solid-900.woff -------------------------------------------------------------------------------- /fontawesome-free/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trananhtuat/list-item-html-css/HEAD/fontawesome-free/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trananhtuat/list-item-html-css/HEAD/index.html -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trananhtuat/list-item-html-css/HEAD/style.css --------------------------------------------------------------------------------