HTMLInline vs External CSS

There are 3 ways to style HTML:

  1. Inline CSS → style directly in the tag.
  2. Internal CSS → inside <style> tag in <head>.
  3. External CSS → linked .css file using <link> tag.
<head>
  <link rel='stylesheet' href='styles.css'>
</head>