Setting up Cascading Style Sheets for your website is actually very simple. It requires two pieces of code. To begin, make a new file with the extension ".css" (i.e. style.css) and paste the following at the top:
@charset "UTF-8";
/* CSS Document */
/* CSS Document */
After this, you must attach your brand new CSS file to your HTML document, so that it can get style information from it. Somewhere in the HEAD section of your HTML, paste the following (correct the name if it you didn't name your file "style.css" After that is done, you are ready to consider layouts for your website:
<link rel="stylesheet" type="text/css" href="style.css" />
