Today we will delve into CSS basics!
Helpful tutorials:
Adding Margins: https://www.w3schools.com/css/css_margin.asp
Using a box model/learning to plan your site: https://www.w3schools.com/css/css_boxmodel.asp
Changing font styles: https://www.w3schools.com/css/css_font.asp
Google fonts: https://www.w3schools.com/css/css_font_google.asp
(Just remember any of these CSS styles references will go in your stylesheet - not in your HTML page if you want it applied to your whole site linking the stylesheet on each page unlike how it is listed on W3 Schools.)
Here is my tutorial on how to set up your page from scratch: https://youtu.be/s2ppiHyrYPk
Just the ultimate basics on all the HTML tags we have learned.
Remember to link your stylesheet within your html page like so:
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="mystyle.css">
</head>
<body>
<h1>This is a heading</h1>
<p>This is a paragraph.</p>
</body>
</html>
Comments