# CSS Intro & File Set Up

CSS Controls how HTML elements appear on the page and save time by allowing you to make  and store formatting designs on document that can be re-used for several websites.

CSS Style Sheets do NOT contain any content - they only contain formatting information&#x20;

Create a new document in your notepad&#x20;

```
This block is evidence of all the mistakes that Mrs. Wright made
```

ave this file  as `style1.css` in the HTML folder on your desktop

![Image from W3 Schools](/files/-Lye13Qzy75QTePkgN63)

**Selector**: Which tag are we developing the formatting for. In the example - we are indicated that every time we use `<h1>`, the  font will be blue and size 12.&#x20;

Each formatting declaration is separated by a `;`

First you indicated which formatting property you want to set and then after the `:` you provide the value

```
p  {
    color: red;
    text-align: center;
    }
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://computational-thinking-in-room11.gitbook.io/room-112-dhs/css/untitled.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
