-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhome.php
More file actions
69 lines (62 loc) · 2.21 KB
/
home.php
File metadata and controls
69 lines (62 loc) · 2.21 KB
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
<!--Home Page-->
<!--By Shiyi Zhang and Wei-Ling Chin-->
<!DOCTYPE HTML>
<html>
<head>
<title>Geolocation Services</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta name="description" content="" />
<meta name="keywords" content="" />
<!--[if lte IE 8]><script src="css/ie/html5shiv.js"></script><![endif]-->
<script src="js/jquery.min.js"></script>
<script src="js/jquery.dropotron.min.js"></script>
<script src="js/jquery.scrolly.min.js"></script>
<script src="js/jquery.scrollgress.min.js"></script>
<script src="js/skel.min.js"></script>
<script src="js/skel-layers.min.js"></script>
<script src="js/init.js"></script>
<noscript>
<link rel="stylesheet" href="css/skel.css" />
<link rel="stylesheet" href="css/style.css" />
<link rel="stylesheet" href="css/style-wide.css" />
<link rel="stylesheet" href="css/style-noscript.css" />
</noscript>
<!--[if lte IE 8]><link rel="stylesheet" href="css/ie/v8.css" /><![endif]-->
<!--[if lte IE 9]><link rel="stylesheet" href="css/ie/v9.css" /><![endif]-->
</head>
<!-- The body part of the user interface -->
<body class="index" style="width:100%; height:100%; padding:0px; margin:0px">
<div id="mainFrame" style="background: url('images/headerPink.jpg') no-repeat; background-size:125%">
<!-- Header -->
<header id="header" class="alt" >
<h1 id="logo"><a href="home.php">Project #100</a></h1>
<nav id="nav">
<ul>
<li class="current"><a href="home.php">Welcome</a></li>
<li><a href="prototypePage.php" class="button special">Prototype</a></li>
</ul>
</nav>
</header>
<!-- Banner -->
<section id="banner">
<div class="inner">
<header>
<h2>GEOLOCATION SERVICES</h2>
</header>
<p>A geolocation service to illustrate </br>artist popularity across the globe via SNS.</p>
<footer>
<ul class="buttons vertical">
<li><a href="prototypePage.php" class="button fit scrolly">Start Prototype</a></li>
</ul>
</footer>
</div>
</section>
<!-- Footer -->
<footer id="footer">
<ul class="copyright">
<li>© 2014 SE700</li><li>Design: szha460 & wchi144</li>
</ul>
</footer>
</div>
</body>
</html>