-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
96 lines (63 loc) · 3.09 KB
/
index.html
File metadata and controls
96 lines (63 loc) · 3.09 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
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
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="description" content=" ***Website Description Here*** "/>
<meta name="author" content="Jacob Hammond"/>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" />
<title>Precise Pixels | Web Design</title>
<link href='http://fonts.googleapis.com/css?family=Roboto+Slab:400,300,100,700' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="css/normalize.css" type="text/css" media="screen" />
<link rel="stylesheet" href="css/styles.css" type="text/css" media="screen" />
<link rel="stylesheet" href="css/mobile.css" type="text/css" media="screen" />
<link rel="shortcut icon" href="images/favicon.ico">
<!--[if lt IE 9]>
<script src="js/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div id="main-wrapper">
<nav>
<a href="index.html"><div class="button">HOME</div></a>
<a href="about.html"><div class="button">US</div></a>
<a href="work.html"><div class="button">WORK</div></a>
<a href="contact.html"><div class="button">CONTACT</div></a>
</nav>
<header>
<div class="top-msg">
<h1>We are</h1>
<div id="logo"><img src="images/logo2.png" alt="Precise Pixels"></div>
<h1>We pride ourselves on creating websites that are functional, intuitive and beautiful.</h1>
</div>
</header>
<!-- content-wrapper --><div class="content-wrapper">
<div class="content-section">
<h2 class="title">WHO ARE WE?</h2>
<p class="sub-title">Precise Pixels is a web design company based in Canterbury, Kent.</p>
<p>'Nitpick' is a word that is heard a lot when we are working on websites. We change things down to the tiniest detail, even something that is only a few pixels askew; hence the name Precise Pixels.</p>
</div>
<div class="content-section">
<a href="about.html"><div class="box blue third"><h3>The Team</h3><div class="icon">Ü</div></div></a>
<a href="work.html"><div class="box blue third"><h3>Our Work</h3><div class="icon">7</div></div></a>
<a href="contact.html"><div class="box blue third"><h3>Contact</h3><div class="icon">h</div></div></a>
</div>
</div><!-- content-wrapper end -->
<footer>
<p>Copyright © Precise Pixels 2010 - 2013. All rights reserved.</p>
<iframe src="//www.facebook.com/plugins/like.php?href=https%3A%2F%2Fwww.facebook.com%2FPrecisePixels%3Fref%3Dts%26fref%3Dts&send=false&layout=button_count&width=450&show_faces=false&font=verdana&colorscheme=light&action=like&height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:80px; height:21px;" allowTransparency="true"></iframe>
</footer>
</div><!-- main-wrapper end -->
</body>
<script src="js/jquery-1.9.1.min.js" charset="utf-8"></script>
<!-- Lazy Load -->
<script src="js/jquery.lazyload.js" charset="utf-8"></script>
<script type="text/javascript" charset="utf-8">
$(function() {
$("img.lazy").show().lazyload({
effect : "fadeIn",
failurelimit : 0
});
});
</script>
<!-- Lazy Load End -->
</html>