├── js └── scripts.js ├── css └── styles.css ├── README.md └── index.html /js/scripts.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /css/styles.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # meta-barebones-layout 2 | 3 | The code in this repo is taken directly from the video 4 | "Bare bones layout" in the course "HTML and CSS in depth" 5 | offered by Meta Staff on Coursera. It is only intended to 6 | be used for educational purposes. No copyright infringement 7 | is intended. 8 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |
5 | 6 | 7 | 8 |Header
35 |