Html
<html>
<!-- heading -->
<head>
<meta charset="utf-8">
<title>Example</title>
</head>
<!-- page -->
<body>
<!-- connect library Bootstrap (js file) -->
<script src="https://dir.by/example_lib/bootstrap-4.1.3/js/bootstrap.min.js"></script>
<!-- connect library Bootstrap (css file) -->
<link rel="stylesheet" href="https://dir.by/example_lib/bootstrap-4.1.3/css/bootstrap.min.css">
<!-- HTML Elements -->
<div class="container" style='background-color:gold;'>
container
</div>
<br>
<div class="container-fluid" style='background-color:lightblue;'>
container-fluid
</div>
</body>
</html>
Html
this is not correct
<div class="container">
<div class="container-fluid">
</div>
</div>
Html
this is not correct
<div class="container-fluid">
<div class="container">
</div>
</div>