-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathlookup.html
More file actions
51 lines (39 loc) · 1.91 KB
/
lookup.html
File metadata and controls
51 lines (39 loc) · 1.91 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
<!DOCTYPE html>
<html>
<head>
<title>Curio Cards</title>
<meta charset="utf-8">
<!-- Rubik font -->
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Rubik:300,300i,400,400i,500,500i,700,700i,900,900i">
<!-- Bootstrap 4 css -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/css/bootstrap.min.css" integrity="sha384-rwoIResjU2yc3z8GV/NPeZWAv56rSmLldC3R/AZzGRnGxQQKnKkoFVhFQhNUwEyJ" crossorigin="anonymous">
<!-- Main css -->
<link rel="stylesheet" href="css/lookup.css">
</head>
<body>
<br>
<center><h1>Curio Card and Vending Lookup Tool</h1></center>
<div class="flex-container" id="info-container">
</div>
<footer class="footer text-center">
<img src="img/logo-bottom.svg" alt="logo">
<p>© Copyright 2017 | Curio Cards</p>
</footer>
<!-- jQuery first (full version), then Tether, then Bootstrap js. -->
<script src="https://code.jquery.com/jquery-3.1.1.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/tether/1.4.0/js/tether.min.js" integrity="sha384-DztdAPBWPRXSA/3eYEEUWrWCy7G5KFbe8fFjk5JAIxUYHKkDx6Qin1DkWx51bBrb" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/js/bootstrap.min.js" integrity="sha384-vBWWzlZJ8ea9aCX4pEW3rVHjgjt7zpkNpZk+02D9phzyeVkE+jo0ieGizqPLForn" crossorigin="anonymous"></script>
<!-- Main js -->
<script src="js/web3.min.js"></script>
<script src="js/localforage.nopromises.min.js"></script>
<script src="js/lookup.js"></script>
<script>
(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-104238868-1', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>