Skip to content

Instantly share code, notes, and snippets.

@robyoung
Created December 3, 2011 22:56
Show Gist options
  • Save robyoung/1428419 to your computer and use it in GitHub Desktop.
Save robyoung/1428419 to your computer and use it in GitHub Desktop.
Web Page Week Two
<html>
<head>
<style>
body {
background-color: #ada;
font-family: Helvetica, sans-serif;
}
#content {
width: 800px;
margin-left: auto;
margin-left: auto;
padding: 20px;
background-color: #fff;
border-radius: 10px;
}
h1 {
text-align: center;
}
p {
background-color: #ddd;
padding: 10px;
border-radius: 5px;
}
</style>
</head>
<body>
<div id="content">
<h1>Blackheath</h1>
<p>Blackheath is a district of London situated in the Boroughs of Lewisham and Greenwich.</p>
<p>
I don't know much about Blackheath so I've found some creative commons photos on Flickr. Apparently It has a heath with a pond which
sometimes freezes over, as we can see from the photo below.
</p>
<img src="http://farm5.staticflickr.com/4071/4268441849_277faacc1f.jpg">
<p>Blackheath also has a kite festival ocne a year. In 2009 there was a pedal sofa.</p>
<img src="http://farm4.staticflickr.com/3413/3622050203_1635d72578.jpg">
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment