Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/har8899/css
https://github.com/har8899/css
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/har8899/css
- Owner: Har8899
- Created: 2024-08-07T14:13:43.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2024-08-08T13:58:53.000Z (5 months ago)
- Last Synced: 2024-08-08T16:23:07.021Z (5 months ago)
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# CSS
## What is CSS?
- CSS *( Cascading style sheet)* helps us to specify how things should look in our website.
- It describes how HTML elements should be displayed on screen, paper, or other media.
- By using CSS, you can control the layout, colors, fonts, and other visual aspects of your web pages.
## Why Use CSS?
- **Saves Work:** Before CSS, web developers had to add style information (like fonts and colors) directly into HTML tags, which made managing large websites cumbersome and expensive. CSS solved this problem by separating style from content.
- **External Stylesheets:** CSS styles are typically saved in external .css files. With an external stylesheet, you can change the look of an entire website by modifying just one file.
- **Enhances User Experience:** CSS allows you to create attractive layouts, apply consistent styling, and adapt designs for different devices and screen sizes.