travel.html 1.36 KB
Newer Older
Norman Macasaet's avatar
Norman Macasaet committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
<!DOCTYPE html>
<html>
<head>
<style>
	body {
		background-image: url("antartica.jpg");
		background-size: cover;
	}
</style>
<link rel="stylesheet" type="text/css" href="bootstrap copy.css">
	<title>Travel</title>
</head>
<body class="container">
	<h1 style="color: white">My experience of the world</h1>
	<div class="row">
		<div class="col-md-4 well" align="center">
			<img src="cable.jpg" height="250" width="250">
			<p>I really love to travel</p>
		</div>

		<div class="col-md-4 well" align="center">
			<img src="snow.jpg" height="250" width="250">
			<p>And appreciate the views</p>
		</div>

		<div class="col-md-4 well" align="center">
			<img src="osaka.jpg" height="250" width="250">
			<p>From cities</p>
		</div>
	</div>

	<div class="row">
		<div class="col-md-4 well" align="center">
			<img src="bangka.jpg" height="250" width="250">
			<p>to the outdoors</p>
		</div>

		<div class="col-md-4 well" align="center">
			<img src="ski.jpg" height="250" width="250">
			<p>willing to try new things</p>
		</div>

		<div class="col-md-4 well" align="center">
			<img src="passport.jpg" height="250" width="250">
			<p>I'm off!</p>
		</div>
	</div>
	
	<div class="row">
		<div class="col-md-8 well">
			<h2>Where next?</h2>
				<p><a href="explore.html">Travel pa more</a></p>	
				<p>or</p>
				<p><a href="ball.html">Back to my roots</a></p>
		</div>
	</div>
		
</body>
</html>