-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
57 lines (49 loc) · 2.06 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
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Robin Receptionist</title>
<meta name="description" content="Receptionist">
<meta name="viewport" content="width=device-width">
<link rel="icon" href="/favicon.ico" type="image/x-icon"/>
<script type="text/javascript" src="//use.typekit.net/xyl8rhh.js"></script>
<script type="text/javascript">try{Typekit.load();}catch(e){}</script>
<link href='//fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,600,400italic,600italic' rel='stylesheet' type='text/css'>
<link rel='stylesheet' href='bower_components/robinstrap/dist/css/robinstrap.css'>
<style>
section{
margin:60px 0;
}
#results{
clear:both;
width:600px;
margin:30px 0;
}
#matched p{
width:400px;
text-align:center;
padding:30px 0;
}
</style>
</head>
<body id="cities-page" class="cities-page">
<section>
<div class="wrap">
<h1 class="title">Robin Receptionist</h1>
<p>Press the button, say your host's name, and then press the button again.</p>
<a id="listen" href="#" class="btnPrimary">Listen</a>
<div id="results">
<p id="searchedFor"></p>
<div id="matched"></div>
</div>
</div>
</section>
<script src="//code.jquery.com/jquery-2.0.2.min.js"></script>
<script src="js/rbn.receptionist.js"></script>
<script src="js/reception-demo.js"></script>
</body>
</html>