-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
97 lines (73 loc) · 3.33 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml"
lang="en-GB" xml:lang="en-GB">
<head>
<meta charset="UTF-8"/>
<title>Gift List</title>
<link rel="icon" href="favicon.ico" type="image/x-icon" />
<link rel = "stylesheet" type="text/css" href="css/navigation.css"/>
<link rel = "stylesheet" type = "text/css" href = "css/main.css"/>
<script src="js/modernizr.js"></script>
<script type="text/javascript" src="selectivizr.js"></script>
<!--[if (gte IE 6)&(lte IE 8)]>
<script type="text/javascript" src="selectivizr.js"></script>
<noscript><link rel="stylesheet" href="[fallback css]" /></noscript>
<![endif]-->
</head>
<body>
<div class="container">
<header>
<div class="logo">
<img src="images/logoFucia.png" alt="logo"/>
</div>
<div class="navigation">
<nav class="centre">
<ul id="menu">
<li><a href="index.html">Home</a></li>
<li><a href="findSomeone.html">Find Someone</a></li>
<li><a href="yourList.html">Your List</a></li>
<li><a href="howItWorks.html">How it works</a></li>
</ul>
</nav>
</div>
</header>
<main>
<section class="image-left content-light content">
<img src="images/pie_chart.png" alt="Pi Chart"/>
<p class="story">75% of people said they were upset when a friend or family member didn't but them a gift for there birthday.</p>
</section>
<section class="image-right content-light content">
<img src="images/barchartRugged.png" alt="barchart"/>
<p class="story">When asked, the majority of people said it was forgetting that prevented them buying a gift followed second by not knowing what to get. </p>
</section>
<section class="content-light image-left content">
<iframe src="https://www.youtube.com/embed/v5T8QwIyDkE?rel=0&showinfo=0" ></iframe>
<p class="story">We all have an inherant understanding that it is good to give.</p>
</section>
<section class="buttons-3d content">
<p class="button-perspective left-btn">
<button onclick="change('findSomeone.html')" class="btn btn-3d btn-find">Find Someone</button>
</p>
<p class="button-perspective right-btn">
<button onclick="change('howItWorks.html')" class="btn btn-3d btn-how">How it works?</button>
</p>
</section>
<section class="content-light content" >
<p class="nextGame">Or...<br/>You could just get distracted as usual and hover over this curious black square.</p>
<div class="gamePostion">
<canvas id="game" height="500" width="500" onmouseover="runGame()"></canvas>
<script src="js/game.js" type="text/javascript"></script>
</div>
</section>
<!--
-->
</main>
</div> <!-- end container-->
<footer>
<p style = "text-align: center; padding: 0px;">©Copyright - GiftList by Ashley Haggan, 2015</p>
</footer>
<script src="js/jquery.min.js"></script>
<script src="js/container.js"></script>
<script src="js/main.js"></script>
</body>
</html>