# 1. Introduction

We're going to build a poll app. You'll start with plain HTML and gradually
add dynamic features with Bialet.

The app has two pages:
- A **vote page** with a form to cast your vote
- A **results page** showing vote counts and percentages

The HTML is built with [Flowbite](https://flowbite.com/) and
[TwitterCSS](https://tailwindcss.com/). Download the starting files:

- [vote.html](1-html/vote.html)
  ![Poll Vote](../_static/poll-vote.png)
- [results.html](1-html/results.html)
  ![Poll Results](../_static/poll-results.png)

Your project can include JavaScript, CSS, images — anything a regular
[HTML project](https://developer.mozilla.org/en-US/docs/Learn/Getting_started_with_the_web/Dealing_with_files)
would have. Bialet serves static files alongside your Wren pages.

In the next chapter, we'll set up Bialet and get a development server
running.

---
**Next:** [2. Setup](2-setup)
