+20 XP
Lesson 23

Adding CSS

Inline, internal, and external styles

Three Ways to Add CSS

There are 3 different ways to add CSS to your HTML!

1️⃣

Inline CSS

Write CSS directly in the HTML tag

2️⃣

Internal CSS

Write CSS in a <style> tag in the <head>

3️⃣

External CSS

Write CSS in a separate .css file (BEST!)

Pro Tip: External CSS is the most popular!