Hi. I want to use Bootstrap on every page of a website. The head and bottom will be fixed on all of them. Only the container inside the body will change on each page. Below is an example page:
<!doctype html>
<html lang="pt-br">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="bootstrap/css/bootstrap.min.css">
<link href="css/style.css" rel="stylesheet"/>
<link href="fontawesome-free/css/all.css" rel="stylesheet"/>
<title>Example</title>
</head>
<body>
<div class="container">
Each page will change this container. Everything else will be fixed.
</div>
<script src="bootstrap/js/bootstrap.bundle.min.js"></script>
</body>
</html>