Learn the basics of CSS in 5 minutes ! : Please, show me the tutorial
Good to note :There are three ways to create CSS :
CSS element selector : Call HTML element with his name and style all HTML tags of this type. Element selectors are denoted with the name of the HTML element.
CSS class selector : Can be reusable and applied to many elements. Class selectors are denoted with a period .
followed by the class name.
CSS ID selector : Should be unique and used to style only a single element. ID selectors are denoted with a hash sign #
followed by the id name.