-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
77 lines (67 loc) · 3.01 KB
/
index.html
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title>Playtime!</title>
<link rel="stylesheet" href="css/normalize.css" type="text/css" media="screen">
<link rel="stylesheet" href="css/grid.css" type="text/css" media="screen">
<link rel="stylesheet" href="css/style.css" type="text/css" media="screen">
<link href='http://fonts.googleapis.com/css?family=Source+Sans+Pro' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Days+One' rel='stylesheet' type='text/css'>
</head>
<body>
<div class="container clearfix">
<div id="main_image" class="grid_1">
<img src="img/sealion.jpg" alt="Sealion"/>
</div>
<div id="headline" class="grid_3">
<h1>Playtime!</h1>
</div>
<div class="grid_8 omega">
<ul class="nav">
<li><a href="#">About</a></li>
<li><a href="#">Blog</a></li>
<li><a href="#">Fun facts</a></li>
<li class="last"><a href="#">Contact Me</a></li>
</ul>
</div>
<div id="intro" class="grid_9">
<p>Hi, I'm Richard and you’ve caught me in transition to becoming a web developer. This page is part of a course I’m doing to learn software development skills, demonstrating that we can manipulate HTML and CSS.</p>
</br>
<a href="#" class="btn">Please hover over this pointless button</a>
</br>
</div>
<div id="main_side_image" class="grid_3 omega">
<img src="img/richard.jpg" alt="Richard"/>
</div>
<div id="featured" class="grid_9">
<h2>Now this is more interesting</h2>
<p>This week's featured cat is our amazing <a href="#">Goldie the cat</a> as featured on youtube, where he demonstrates <a href="https://www.youtube.com/watch?v=EMTG__FUbZU">how to do massage<a></p></br>
<iframe width="700" height="394" src="http://www.youtube.com/embed/EMTG__FUbZU" frameborder="0" allowfullscreen></iframe>
</div>
<div id="places" class="grid_3 omega">
<h2>Or this</h2>
<p>Two places I love are the Avon river in Christchurch and The Truman Track beach in Buller</p>
<img src="img/Avon.jpg" alt="Avon river"/>
<img src="img/Truman.jpg" alt= "Truman Track beach"/>
</div>
<div class="grid_7">
<h2>And now for some random words</h2>
<p>Words in themselves don't have meaning until they are recieved by other people.</p> </br>
<a href="#" class="btn">Click if you agree</a>
</div>
<div class ="grid_5 omega">
<h2>And yes, there's more</h2>
<p>
Email this random address: <a href="#">interestingfolks@loadsandloads ofveryinterestingtimes.wow</a></p>
</p>
<p>Or check out all my other interesting stuff online</p>
<a href="http://facebook.com/rwoodnz"><img src="img/facebook.gif" alt="Facebook"></a>
<a href="http://twitter.com/#!/rwoodnz"><img src="img/twitter.gif" alt="Twitter"></a>
</div>
<div id="copyright" class="grid_12">
<p>© 2014 Richard Wood</p>
</div>
</div>
</body>
</html>