Как скачать bootstrap на мак?
0
как скачать подскажите
1 ответов
1
1. Также как и на PC
2. Необязательно скачивать, можно использовать CDN подключение, как здесь:
https://fructcode.com/ru/courses/bootstrap/grid-system/
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<title>Bootstrap</title>
<!-- Подключаем Bootstrap CSS через CDN -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<!-- Подключаем style.css -->
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container color">
<h1>Hello, Bootstrap</h1>
</div>
<!-- Подключаем jQuery и Bootstrap JS через CDN -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
</body>
</html>