-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathgallery.html
More file actions
80 lines (68 loc) · 2.92 KB
/
gallery.html
File metadata and controls
80 lines (68 loc) · 2.92 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
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
<!DOCTYPE html>
<html>
<head>
<title>Curio Cards - The Future of Collectibles</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">
<!-- Normalize css -->
<link rel="stylesheet" href="https://necolas.github.io/normalize.css/7.0.0/normalize.css">
<!-- 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">
<!-- Font Awesome -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<!-- FlipClock css -->
<link rel="stylesheet" href="lib/flipclock/flipclock.css">
<!-- Main css -->
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="container">
<div class="row">
<br><br>
</div>
<div class="row">
<div class="col-sm-12">
<center>
<h1>Curio Card Gallery</h1>
</center>
</div>
</div>
<div class="row">
<br><br>
</div>
<div class="form-group row">
<label for="ethAddress" class="col-4 col-form-label"><b>Enter your public ETH Address</b></label>
<form onsubmit="return false;">
<input type="text" size="40" name="ethAddress" id="ethAddress" placeholder="ETH Address: 0x3f8131..." >
</form>
</div>
<div id="card-container" class="row">
</div>
</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>
<!-- Clipboard js -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/clipboard.js/1.7.1/clipboard.min.js"></script>
<!-- FlipClock js -->
<script src="lib/flipclock/flipclock.min.js"></script>
<!-- Main js -->
<script src="js/web3.min.js"></script>
<script src="js/localforage.nopromises.min.js"></script>
<script src="js/gallery.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>