<!DOCTYPE html>
<html>
	<head>
		<title>My Website</title>
		<style>
		</style>
		<link type="text/css" rel="stylesheet" href="stylesheets/bootstrap.css">
	</head>
	<body class="container">
		<div class="row">
			<div class="col-md-12 well">
				<h1 id="main-h1">Welcome to my site!</h1>
			</div>
		</div>

		<div class="row">
			<div class="col-md-4 well">
				<h2>Section 1</h2>
				<p>Loren ipsum doler</p>
			</div>

			<div class="col-md-8 well">
				<h2>Section 2</h2>
				<p>This is section 2</p>
				<div class="row">
					<div class="col-md-3">
						<h4>A</h4>
					</div>
					<div class="col-md-3">
						<h4>B</h4>
					</div>
					<div class="col-md-3">
						<h4>C</h4>
					</div>
					<div class="col-md-3">
						<h4>D</h4>
					</div>
				</div>
			</div>
		</div>

		<div class="row">
			<div class="col-md-4">
				<h3>Section A</h3>
			</div>
			<div class="col-md-4">
				<h3>Section B</h3>
			</div>
			<div class="col-md-4">
				<h3>Section C</h3>
			</div>
		</div>

	</body>
</html>