I am building a personal website with Bootstrap, but have come across an issue to which I cannot find a solution. I've looked at various tutorials and have just a basic skeleton of a simple webpage. However, it seems that the left end of the page extends beyond the left edge of the screen, and moving the scrollbar to the right, brings the page beyond the edge of the jumbotron header.
How do I center the page on the screen?
Here is my complete code:
<!DOCTYPE html>
<html>
<head>
<title>My Name</title>
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"
rel="stylesheet">
</head>
<body>
<div class="jumbotron text-center">
<h1>My Name</h1>
</div>
<div class="row">
<h2>What I've Been Up To</h2>
</div>
</body>
<footer>
<p> Copyright ©
<!--Script displays the current year-->
<script type="text/javascript">
var d = new Date()
document.write(d.getFullYear())
</script>
</p>
</footer>
</html>