Кнопки чII:
Код:
<button type="button" class="btn btn-primary">Кнопка синия</button> <button type="button" class="btn btn-secondary">Кнопка серая</button> <button type="button" class="btn btn-success">Успешно</button> <button type="button" class="btn btn-danger">Опасность</button> <button type="button" class="btn btn-warning">Предупреждение</button> <button type="button" class="btn btn-info">Информация</button> <button type="button" class="btn btn-light">Светлая</button> <button type="button" class="btn btn-dark">Тёмная</button> <button type="button" class="btn btn-link">Ссылка</button>
Пример index.html:
Код:
<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="description" content=""> <meta name="author" content="Mark Otto, Jacob Thornton, and Bootstrap contributors"> <meta name="generator" content="Hugo 0.104.2"> <link href="./css/bootstrap.min.css" rel="stylesheet"> <title>Пример с кнопками :: Bootstrap v5.2</title> </head> <body> <main class="container"> <div class="container"> <br><br> <button type="button" class="btn btn-primary">Кнопка 1</button> <button type="button" class="btn btn-secondary">Кнопка 2</button> <button type="button" class="btn btn-success">Успешно</button> <button type="button" class="btn btn-danger">Опасность</button> <button type="button" class="btn btn-warning">Предупреждение</button> <button type="button" class="btn btn-info">Информация</button> <button type="button" class="btn btn-light">Светлая</button> <button type="button" class="btn btn-dark">Тёмная</button> <button type="button" class="btn btn-link">Ссылка</button> </div> </main> <script src="./js/bootstrap.bundle.min.js"></script> </body> </html>
Результат: