Important Notice:

CSS Introduction

CSS Introduction

20 views 1 min read

CSS — Cascading Style Sheets

CSS styles HTML pages — colors, fonts, spacing, positioning.

Ways to Apply CSS

  • Inline: style="" inside tag
  • Internal: <style> in <head>
  • External: .css file linked via <link>

CSS Syntax & Selectorsselector { property: value; }\np { color: red; }\n.myClass { background: blue; }\n#myId { margin: 20px; }

Related Notes