In our ft_transcendence project we use the Bootstrap toolkit. Bootstrap is an open-source, front-end framework designed to streamline the development of responsive, mobile-first web applications. Initially created by Twitter in 2011, it provides a collection of pre-designed HTML, CSS, and JavaScript components to build consistent, visually appealing user interfaces.
Bootstrap can be included via CDN or installed locally (e.g., via npm). It’s ideal for rapid prototyping or full-scale web projects, such as this one.
Example inclusion via CDN:
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"></script>
For more details, visit the official Bootstrap website.