So now you have mastered HTML using the flow its time you learn how to customise and make your webpage Jazzy. Yes. That's the word.
CSS is a way to show how things will be viewed on the page aesthetically. CSS can make your webpage look much neater and nice to look at. They can be found in three different places. They can be found in the <body>
as in line CSS which is found as a attribute. They can also be coded in the HTML page in the <head>
tag as normal CSS. Also, you can link up your HTML to your css to work together. This is the neatest way to do it. Simply make a file like HTML but instead end your file name as a .CSS file. Link your two files together by putting in <link rel="stylesheet" href="name of your .css file goes here"/>
in your <head>
tag. Well done! You've just created your CSS document!