top of page

CSS

  • Writer: Sophia Canfield
    Sophia Canfield
  • Nov 3, 2022
  • 1 min read

Updated: Nov 4, 2022

Today we will delve into CSS basics!



Helpful tutorials:

Using a box model/learning to plan your site: https://www.w3schools.com/css/css_boxmodel.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


bottom of page