HTML — Inline vs External CSS
There are 3 ways to style HTML:
- Inline CSS → style directly in the tag.
- Internal CSS → inside
<style>
tag in<head>
. - External CSS → linked
.css
file using<link>
tag.
<head>
<link rel='stylesheet' href='styles.css'>
</head>