# Dica 02 - Usando http.server

[![](/files/-MfuAP0TTmVUwSHDjaRn)](https://youtu.be/D4FeNPq8UTY)

Crie um `public/index.html`.

```html
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <meta http-equiv="X-UA-Compatible" content="IE=edge">
  <meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no">
  <link rel="shortcut icon" href="http://getskeleton.com/dist/images/favicon.png">
  <title>Skeleton CSS</title>

  <!-- Skeleton -->
  <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/skeleton/2.0.4/skeleton.min.css">
</head>
<body>
  <h1>Skeleton template example</h1>
  <p>Esta página está usando <a href="http://getskeleton.com/">skeleton CSS</a>.</p>
  <button class="button-primary">Botão</button>
</body>
</html>
```

E simplesmente digite

```
python -m http.server 8000
```

## Links

<http://getskeleton.com/>

<https://cdnjs.com/libraries/skeleton>


---

# 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://www.dicas-de-django.com.br/062-02-usando-http-server.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.
