├── .gitignore ├── footer-1 ├── index.html ├── logo.svg └── styles.css ├── footer-2 ├── index.html ├── logo.svg └── styles.css ├── footer-3 ├── index.html ├── logo.svg └── styles.css └── footer-4 ├── index.html ├── logo.svg └── styles.css /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_STORE -------------------------------------------------------------------------------- /footer-1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-joe/css-footers/HEAD/footer-1/index.html -------------------------------------------------------------------------------- /footer-1/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-joe/css-footers/HEAD/footer-1/logo.svg -------------------------------------------------------------------------------- /footer-1/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-joe/css-footers/HEAD/footer-1/styles.css -------------------------------------------------------------------------------- /footer-2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-joe/css-footers/HEAD/footer-2/index.html -------------------------------------------------------------------------------- /footer-2/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-joe/css-footers/HEAD/footer-2/logo.svg -------------------------------------------------------------------------------- /footer-2/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-joe/css-footers/HEAD/footer-2/styles.css -------------------------------------------------------------------------------- /footer-3/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-joe/css-footers/HEAD/footer-3/index.html -------------------------------------------------------------------------------- /footer-3/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-joe/css-footers/HEAD/footer-3/logo.svg -------------------------------------------------------------------------------- /footer-3/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-joe/css-footers/HEAD/footer-3/styles.css -------------------------------------------------------------------------------- /footer-4/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-joe/css-footers/HEAD/footer-4/index.html -------------------------------------------------------------------------------- /footer-4/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-joe/css-footers/HEAD/footer-4/logo.svg -------------------------------------------------------------------------------- /footer-4/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontend-joe/css-footers/HEAD/footer-4/styles.css --------------------------------------------------------------------------------