Posted under » CSS on 30 January 2019
The normal non linking way is to put this on the
of your page.<style> body { background-color: lightblue; } h1 { color: white; text-align: center; } </style>
The link way is to
<link rel="stylesheet" type="text/css" href="css/the.css" />
The other way is to
You are not limited to just Arial and Verdana. Now (2018) you can use a wide range of google fonts. To do this you
@import url('https://fonts.googleapis.com/css?family=Raleway:400,400italic,700|Archivo:300,400,600,700'); body { font-family:'Archivo', Arial, sans-serif; font-size:14px; }