-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
83 lines (68 loc) · 2.18 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<!DOCTYPE HTML>
<html>
<head>
<title>CredID</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!--[if lte IE 8]><script src="assets/js/html5shiv.js"></script><![endif]-->
<link rel="stylesheet" href="assets/css/style.css" />
<!--[if lte IE 9]><link rel="stylesheet" href="assets/css/ie9.css" /><![endif]-->
<!--[if lte IE 8]><link rel="stylesheet" href="assets/css/ie8.css" /><![endif]-->
<link rel="icon" href="img/credidicon.png" >
<style>
/* NOTE: The styles were added inline because Prefixfree needs access to your styles and they must be inlined if they are on local disk! */
@import 'https://fonts.googleapis.com/css?family=Roboto+Mono:100';
html,
p {
font-family: 'Roboto Mono', monospace;
}
.container {
height: 100%;
width: 100%;
justify-content: center;
align-items: center;
display: flex;
}
.text {
font-weight: 100;
font-size: 20px;
color: #000;
}
.dud {
color: #a5a5a5;
}
</style>
<script src="https://cdnjs.cloudflare.com/ajax/libs/prefixfree/1.0.7/prefixfree.min.js"></script>
</head>
<body class="is-loading">
<div id="wrapper">
<!-- Main -->
<section id="main">
<header>
<span class="avatar"><img src="img/credidicon.png" alt="" /></span>
<h1>CredID</h1>
<p> <div class="container">
<div class="text"> Digital Identity stored on Ethereum. <br> Immediate access to Financial Services. </div>
</div>
</p>
</header>
<footer>
<ul class="icons">
<button onclick="window.location.href = 'signup.html'">Start Now!</button>
</ul>
</footer>
</section>
<!-- Footer -->
<footer id="footer">
<ul class="copyright">
<li>© CredID</li>
</ul>
</footer>
<script>
if ('addEventListener' in window) {
window.addEventListener('load', function() { document.body.className = document.body.className.replace(/\bis-loading\b/, ''); });
document.body.className += (navigator.userAgent.match(/(MSIE|rv:11\.0)/) ? ' is-ie' : '');
}
</script>
</body>
</html>