forked from GalvanizeOpenSource/Learn-To-Code-Week-1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
60 lines (53 loc) · 1.62 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
<!DOCTYPE html>
<html>
<head>
<title>LTCW1</title>
<link href="CSS/style.css" rel="stylesheet" type="text/css">
<link href='https://fonts.googleapis.com/css?family=Raleway' rel='stylesheet' type='text/css'>
</head>
<body>
<div class="wrap">
<div class="section sTop">
<div class="inner">
<h1 class="title">My amazing one page website</h1>
<h2 class="subtitle">And it's all about mopeds!</h2>
</div>
</div>
<div class="subMenu" >
<div class="inner">
<a href="#sTop" class="subNavBtn">Home</a>
<a href="#s1" class="subNavBtn">My Mopeds</a>
<a href="#s2" class="subNavBtn">Why Mopeds?</a>
<a href="#s3" class="subNavBtn">Try Mopeds!</a>
<a href="https://twitter.com/grahammcbain" class="subNavBtn extLink end">Follow me on twitter</a>
</div>
</div>
<div class="section s1">
<div class="inner ">
<h1>My Mopeds</h1>
<div class="section">
<a href="http://www.boltmotorbikes.com/"><img src="http://i.imgur.com/BXOdmQ7.jpg"/></a>
</div>
</div>
</div>
<div class="section s2">
<div class="inner">
<h1>Why Mopeds?</h1>
<h2>Because they are wicked fun!</h2>
<div class="section">
<a href="http://www.boltmotorbikes.com/"><img src="https://mopedschool.files.wordpress.com/2014/06/tomos.jpg" title="Me in the glory days"/></a>
</div>
</div>
</div>
<div class="section s3">
<div class="inner">
<h1>Try Mopeds!</h1>
<h2>My wife Alissa tried mopeds and she loves them!</h2>
<div class="section">
<a href="http://www.boltmotorbikes.com/"><img src="http://i.imgur.com/AVmlW8k.jpg" title="Alissa McBain"/></a>
</div>
</div>
</div>
</div>
</body>
</html>