April 2018
Beginner
368 pages
7h 37m
English
There are three ways to use CSS:
<p style'"font-size:12px"></p>
<style> p { font-size:12px; } </style>
<link rel="stylesheet" href="css/style.css">
For this example, we will use the second option, but we'll learn the third option when we start building our own website.
Let's start by adding the <style> tag in our <head> section:
<head> <!--This is our head tag where we put our title ...