-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.html
49 lines (45 loc) · 1.95 KB
/
main.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
<!doctype html>
<!-- Copyright © 2013 Arc90, Inc.
See the file `license` for the license for this file. -->
<html>
<head>
<meta charset="utf-8">
<title>Glimpse</title>
<link href="main.css" rel="stylesheet">
<script src="js/parseuri.js"></script>
<script src="js/main.js"></script>
</head>
<body>
<section id="tab-contents">
<section id="new" class="tab-content">
<header>
<img src="images/extension-icons/128.png" width="128" height="128" alt="Glimpse Icon"/>
<h1>Glimpse</h1>
</header>
<section id="url-controls">
<input type="url" name="url" id="url" required="true" placeholder="Enter an address" autofocus/>
<p id="error_message"></p>
</section>
<section id="suggestions">
<h1>- Or try -</h1>
<ul>
<li><a href="http://espn.com" class="example">ESPN</a></li>
<li><a href="http://mobile.weather.gov" class="example">National Weather Service</a></li>
<li><a href="http://m.flickr.com" class="example">Flickr</a></li>
<li><a href="http://news.google.com" class="example">Google News</a></li>
</ul>
</section>
<footer>
<img src="images/extension-icons/logo-arc90.png" alt="Arc90 Logo" target="_blank"/>
<p>An Arc90 Lab Experiment</p>
<p>Created at <a href="http://lab.arc90.com/hackathon/2012/">the 2012 Arc90 Lab Hackathon</a><p>
</footer>
</section>
</section>
<nav id="tab-bar">
<ul id="tabs">
<li class="tab inactive" id="plus-tab"><button id="plus-button">+</button></li>
</ul>
</nav>
</body>
</html>