Recently I have been working a New project and for that Ive been writing custom .CSS

Previously I had No IDEA how to code in .CSS! And thanks to that Ive been introduceed into the world of .CSS

As lame and nerdy it may sound that I made an entire blog about a coding language, its an important part of the WWW Today!

If you dont know what .CSS is then heres a quick run-down. .CSS if the coding language that makes websites look how they do. It tells you browser how to render the site

A simple example would be: body {background-color: green;} <-- this would tell your browser to render the pages background in the color green! Another one would also be: p { font-family: Cursive; } <-- This would tell your browser to render all text under the <p> tag ( p is the tag for paragraph btw )

.CSS can be linked in an html file externally using <style> which allow you to render the .CSS code inside of the html file. Or! you can link it externally using the <link> tag! just remember to put it under "stylesheet", you can link it like this <link rel="stylesheet" href="styles.css">

Thanks for coming to my Ted Talk lol

- citrusdev