Image Credit: Wikipedia
<!DOCTYPE html>
<html>
<head>
<title><!-- The title of your page goes here --></title>
<!-- other metadata about your page goes here -->
</head>
<body>
<!-- The contents of your page go here -->
</body>
</html>
Image Credit: Wikipedia
h1 {
color: red;
font-weight: bold;
}
/* CSS Selectors */
element
#id
.class
Selectors can be combined
in many ways
Image Credit: Wikipedia