Html
<html>
<!-- заголовок -->
<head>
<meta charset="utf-8">
<title>Example</title>
</head>
<!-- страница -->
<body>
<!-- подключить библиотеку Bootstrap (js файл) -->
<script src="https://dir.by/example_lib/bootstrap-4.1.3/js/bootstrap.min.js"></script>
<!-- подключить библиотеку Bootstrap (css файл) -->
<link rel="stylesheet" href="https://dir.by/example_lib/bootstrap-4.1.3/css/bootstrap.min.css">
<!-- HTML элементы -->
<div class="container" style='background-color:gold;'>
container
</div>
<br>
<div class="container-fluid" style='background-color:lightblue;'>
container-fluid
</div>
</body>
</html>
Html
это не правильно
<div class="container">
<div class="container-fluid">
</div>
</div>
Html
это не правильно
<div class="container-fluid">
<div class="container">
</div>
</div>