Skip to content

Latest commit

 

History

History
24 lines (19 loc) · 2.1 KB

File metadata and controls

24 lines (19 loc) · 2.1 KB

CSS is the second level to learn for you in order to creat your own website.

What is CSS?

CSS (Cascading Style Sheets) allows you to create great-looking web pages, but how does it work under the hood? This article explains what CSS is, with a simple syntax example, and also covers some key terms about the language.

What is CSS for?

A document is usually a text file structured using a markup language — HTML is the most common markup language, but you may also come across other markup languages such as SVG or XML. Presenting a document to a user means converting it into a form usable by your audience. Browsers, like Firefox, Chrome, or Edge , are designed to present documents visually, for example, on a computer screen, projector or printer. CSS can be used for very basic document tetitlext styling — for example changing the color and size of headings and links. It can be used to create layout — for example turning a single column of text into a layout with a main content area and a sidebar for related information. It can even be used for effects such as animation. Have a look at the links in this paragraph for specific examples.

For more information visit CSS.

How To Add CSS in your project:

When a browser reads a style sheet, it will format the HTML document according to the information in the style sheet.

Three Ways to Insert CSS:

There are three ways of inserting a style sheet:

  1. External CSS.
  2. Internal CSS.
  3. Inline CSS.

To learne more about these three ways visit ADD CSS.

CSS reference:

Use this CSS reference to browse an alphabetical index of all of the standard CSS properties, pseudo-classes, pseudo-elements, data types, functional notations and at-rules. You can also browse key CSS concepts and a list of selectors organized by type. Also included is a brief DOM-CSS / CSSOM reference.

For more information visit CSS REFE.