Empty HTML project. Copy paste this to start a new web project.
Link to all HTML tags
https://www.w3schools.com/TAGs/
Quick List:
Font: font-family font-size font-style font-weight etc!
Text: color text-align text-decoration text-transform letter-spacing word-spacing etc!
List: list-style-type etc!
Background: background-color background-image etc!
Gradients: https://www.tutorialrepublic.com/css-tutorial/css3-gradients.php
Animation: https://www.tutorialrepublic.com/css-tutorial/css3-animations.php
Transitions: https://www.tutorialrepublic.com/css-tutorial/css3-transitions.php
Transforms: https://www.tutorialrepublic.com/css-tutorial/css3-3d-transforms.php
Cursors: https://www.tutorialrepublic.com/css-tutorial/css-cursors.php
All properties:
A Complete Guide to Flexbox | CSS-Tricks
<html>
<head>
<title>my first webpage</title>
<link href="styles.css" rel="stylesheet" type="text/css">
</head>
<body>
this is where all my content goes!!
</body>
</html>