01 / 05
CSS is the language of how it looks
If HTML is the frame, CSS is the clothes and the make-up. It is the language that decides how things look — colour, size, where they sit.
Write CSS inside a <style> tag and it applies to the HTML on the same page.
<style> h1 { color: red; }</style><h1>A red heading</h1>