# Activity #19: Research CSS

1. **What is CSS?**:
    
    * CSS is a language used to style and design web pages. It controls the appearance of HTML elements like colors, fonts, layout, and spacing.
        
        **CSS (Cascading Style Sheets)** is a stylesheet language used to style and design web pages. It controls the appearance of HTML elements by managing various aspects, including:
        
        * **Colors**: Adjusts the color of text, backgrounds, and borders.
            
        * **Fonts**: Modifies font styles, sizes, and families for better readability and aesthetics.
            
        * **Layout**: Organizes elements on a page using various layout techniques, such as flexbox and grid.
            
        * **Spacing**: Manages margins, padding, and borders to create space around and within elements.
            
        
        CSS enables developers to separate content from design, leading to more maintainable and visually appealing web applications.
        
2. **Basic CSS Properties**:
    
    * **Text Styling**: Learn how to change text color, font size, and font style.
        
    * **Box Model**: Understand how to use margins, padding, borders, and content.
        
    * **Backgrounds**: Apply background colors or images to elements.
        
    * **Layouts**: Use display, position, and flexbox to create layouts.
        
    * etc
        
3. **Practice**:
    
    * Write a simple HTML document and apply basic CSS using internal or external stylesheets.
        

![](https://cdn.hashnode.com/res/hashnode/image/upload/v1728145077575/221718a5-44a1-4da9-942c-3c06833f384f.png align="center")

![](https://cdn.hashnode.com/res/hashnode/image/upload/v1728145482889/4dce6504-7774-4f59-a036-6bb8390ee3c3.png align="center")

![](https://cdn.hashnode.com/res/hashnode/image/upload/v1728145625847/6d04de36-d68f-4148-97aa-631de1835f2e.png align="center")

![](https://cdn.hashnode.com/res/hashnode/image/upload/v1728145679985/ad47f571-75eb-41fa-be8a-d216e0ff7f2a.png align="center")

HERE"‘S THE OUTPUT:

![](https://cdn.hashnode.com/res/hashnode/image/upload/v1728145008991/5ee7bb04-912a-43eb-a06c-0d9f45b0775e.png align="left")
