├── 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 | Bare Bones Layout 9 | 10 | 11 | 12 | 13 | 20 | 21 | 26 | 27 | 28 | 29 | 30 | 31 | 32 |
33 | 34 |

Header

35 |
36 | 39 |
40 | 41 |

Heading

42 |
43 | 47 | 48 | 49 | 50 | 51 | 52 | --------------------------------------------------------------------------------