-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
49 lines (47 loc) · 2.02 KB
/
index.html
File metadata and controls
49 lines (47 loc) · 2.02 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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Coffee Time</title>
<link href="https://fonts.googleapis.com/css?family=Handlee" rel="stylesheet">
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/index.css">
<meta name="twitter:card" content="summary">
<meta name="twitter:site" content="@billdybas">
<meta name="twitter:title" content="Coffee Time!">
<meta name="twitter:description" content="Is it time to get coffee at Java Wally's? Check their hours and line length.">
<meta name="twitter:image" content="http://dybas.io/CoffeeTime/images/logo.png">
<meta name="twitter:image:alt" content="Hand making OK sign">
<meta property="og:url" content="http://dybas.io/CoffeeTime/">
<meta property="og:title" content="Coffee Time!">
<meta property="og:description" content="Is it time to get coffee at Java Wally's? Check their hours and line length.">
<meta property="og:image" content="http://dybas.io/CoffeeTime/images/logo.png">
</head>
<body>
<header>
<h1>Java Wally's</h1>
<img id="logo" src="images/logo.png">
</header>
<main>
<div class="hoursContainer">
<h1 id="status" class="status"></h1>
<h2>Hours</h2>
</div>
<table id="hours" class="hours"><tbody></tbody></table>
</main>
<img id="image">
<script src="js/jquery-3.1.1.min.js"></script>
<script src="js/moment.min.js"></script>
<script src="js/index.js"></script>
<script>
// Sorry, you're being tracked.
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-84863550-2', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>