HTMl is just an sketetal layout of a website. We need CSS to design a website, add style to it and make it look beautiful.
CSS stands for Cascading Style Sheets. CSS is optional but it coverts an off looking HTML page into a beautiful & responsive website.
We will use Microsoft Visual Studio Code as a tool to edit our Code. It is very powerful, free and customizable.
CSS is a very demanded skill in the world of web development. If you are successfully able to master CSS, you can customize your website as per your liking.
Create a .css file indie your directory and add it to your HTML. Add the following line to your CSS
body{
background-color:red;
}