-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
154 lines (130 loc) · 5.33 KB
/
index.php
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>QuickTags NFC tags to toggle bluetooth and connect to WiFi</title>
<link rel="icon" href="/favicon.ico" type="image/x-icon" />
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="QuickTags are NFC stickers and tags that automate tasks, such as toggling bluetooth or connecting to a WiFi network">
<!-- Le styles -->
<link href="/assets/css/bootstrap.css" rel="stylesheet">
<link href="/assets/css/bootstrap-responsive.css" rel="stylesheet">
<link href="/assets/css/styles.css" rel="stylesheet">
<!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<!-- Fav and touch icons -->
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<script type="text/javascript" src="/assets/js/jquery.cycle.all.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$('.sliders').cycle({
fx: 'fade',
speed: 1000,
timeout: 500
});
});
</script>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-1749798-30']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</head>
<body>
<div class="container-narrow">
<div class="masthead">
<ul class="nav nav-pills pull-right">
<li class="active"><a href="/">Home</a></li>
<li><a href="/faq">FAQ</a></li>
<li><a href="/buy">Buy</a></li>
<li><a href="/contact">Contact</a></li>
</ul>
<h3 class="muted"><a href="/"><img src="/assets/img/logo.png" alt="QuickTags"></a></h3>
</div>
<hr>
<div class="jumbotron">
<div class="large">Do things quickly.</div>
<div class="sliders">
<div><p>Turn on Bluetooth.</p></div>
<div><p>Connect to WiFi.</p></div>
<div><p>Download a menu.</p></div>
<div><p>Visit a website.</p></div>
<div><p>Download an app.</p></div>
</div> <!-- .sliders -->
</div>
<hr>
<div class="row-fluid marketing">
<div class="span12">
<h3>What are QuickTags?</h3>
<p>
<strong>QuickTags</strong> are small strips of metal hidden within stickers or
keyrings. They are used to carry out basic processes that you probably do dosens
of times a day, but are often more tidious than they ought to be.
</p>
<p>
These clever little strips of metal are programmed with specific instructions.
These instructions can be read by an <acronym title="Near-Field Communication">NFC</acronym>-enabled
device.
</p>
<p>
NFC? What? Don't worry, it has been about for a while. 'Contact-less' payments
via debit cards use the same technology, as do Oyster cards.
</p>
<p>
We sell a number of different types of QuickTags, each with a different purpose.
We can also tailor and build any bespoke QuickTag to suit your needs, for more
info on custom tags please <a href="/contact">get in touch</a>.
</p>
</div>
</div>
<div class="row-fluid">
<div class="span12">
<h3>Sample Uses</h3>
</div>
</div>
<div class="row-fluid">
<div class="span6">
<h4>Toggle Bluetooth</h4>
<p>
Tap your phone against a Bluetooth QuickTag to turn Bluetooth on or off in an instant.
Useful for getting in and out of your car when using a Bluetooth headset.
</p>
<h4>Connect to WiFi</h4>
<p>
Have visitors often who want to connect to your WiFi network? Pop one of these stickers
near your front door and with a tap of their phone or tablet they will be connected.
</p>
<h4>Download a menu</h4>
<p>
Put stickers on your tables to allow your customers to download your menu and take it
with them.
</p>
</div>
<div class="span6">
<h4>Visit a website</h4>
<p>
Put some stickers in your shop window. Passers-by can brush their phone or tablet against
the shop window and will be taken to your website.
</p>
<h4>Download an app</h4>
<p>
Got an app? Want more downloads? Get the app to go viral with some custom-designed stickers.
Place them around the city and get downloads from curious passers-by.
</p>
</div>
</div>
<hr>
<div class="footer">
<p>© QuickTags 2012</p>
</div>
</div> <!-- /container -->
</body>
</html>