Empty Web Project Template

Empty HTML project. Copy paste this to start a new web project.

template-web-project.zip

All HTML Tags

Link to all HTML tags

https://www.w3schools.com/TAGs/

All CSS Properties

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:

CSS3 Properties

A Complete Guide to Flexbox | CSS-Tricks

Sample HTML Pages

<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>