Skip to content

Latest commit

 

History

History
25 lines (16 loc) · 1.13 KB

10-css-basics.md

File metadata and controls

25 lines (16 loc) · 1.13 KB

Challenge: Create an Institute Website   |   Integrating CSS and HTML


10. CSS Basics

CSS stands for Cascading Style Sheets. This language works in coordination with HTML, but is its own language with its own rules and terminology. In contrast to HTML, which is responsible for the content of the page, CSS is responsible for the presentation of the page.

Examples of what CSS can help you determine include:

  • What background color you want to use for the page or a paragraph.
  • What font or font size you want for your headings or your normal text.
  • How large you want the images, and whether you want them aligned center, left, or right.
  • Where elements appear on the page.
  • Whether elements are visible to a user or not.

Evaluation

Is CSS a markup language or a programming language?

  • Markup Language*
  • Programming Language

Challenge: Create an Institute Website   |   Integrating CSS and HTML