<!DOCTYPE html>
<html lang="en">
<head>
<title>Bootstrap Example</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="http://localhost:8080/css/bootstrap/bootstrap-4.1.3/css/bootstrap.min.css" rel="stylesheet" type="text/css">
</head>
<body>
<div class="jumbotron text-center">
<h1>Bootstrap Page</h1>
<p>text text text text </p>
</div>
<div class="container">
<div class="row">
<div class="col-sm-4">
<h3>Column 1</h3>
<p>text text text text </p>
</div>
<div class="col-sm-4">
<h3>Column 2</h3>
<p>text text text text </p>
</div>
<div class="col-sm-4">
<h3>Column 3</h3>
<p>text text text text </p>
</div>
</div>
</div>
</body>
</html>