Skip to content

Instantly share code, notes, and snippets.

@peterentwistle
Last active December 16, 2015 01:39
Show Gist options
  • Save peterentwistle/5356825 to your computer and use it in GitHub Desktop.
Save peterentwistle/5356825 to your computer and use it in GitHub Desktop.
Code for the second tutorial. Contains both the index.html and table.html (http://www.youtube.com/watch?v=JYWUkORg7xU)
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Youtube Tutorial - Peter</title>
</head>
<body>
<div id="pageWrapper">
<div id="header">
<header></header>
</div>
<div id="main">
<div id="profileInfo">
<div id="profilePic">
<img src="http://peterentwistle.co.uk/images/thumb_peter.jpg" width="154" height="154" />
</div>
<h1>Peter</h1>
<p>Hello my name is Peter and I make websites!</p>
<h2>Where to find me:</h2>
<ul>
<li><a href="http://youtube.com/peterentwistletv" target="_blank">Youtube</a></li>
<li><a href="http://twitter.com/peterentwistle" target="_blank">Twitter</a></li>
<li><a href="http://facebook.com/peterentwistletv" target="_blank">Facebook</a></li>
</ul>
</div>
</div>
</div>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Table</title>
</head>
<body>
<table border="1px">
<tr>
<th>Year</th>
<th>Salary (£)</th>
</tr>
<tr>
<td>2010</td>
<td>20,000</td>
</tr>
<tr>
<td>2011</td>
<td>22,000</td>
</tr>
<tr>
<td>2012</td>
<td>24,000</td>
</tr>
<tr>
<td colspan="2">Total: 66,000</td>
</tr>
</table>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment