HTML5 + CSS
H1 element = title
H2 element = subheadings
(opening tag = <h1> and closing tag = </h1>
p elements = normal= sized paragraph text on websites
<p> (insert text) </p>
comments = <!— end of comment =
Set styles e.g - <h2 style=”color: blue”>CatPhotoApp</h2> THIS IS CALLED
AN INLINE STYLE
CSS Selectors to style elements:
<style> and </style>
to make all h2 elements red = <style> h2 {color: red; } </style>
<style>
h2 {color: blue;}
</style>
<h2>CatPhotoApp</h2>
CSS Class to Style an Element -