-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.html
78 lines (74 loc) · 3.25 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Cryptocurrency Icons</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.2/css/bootstrap.min.css">
<link rel="stylesheet" href="main.css">
<script defer src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script defer src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.2/js/bootstrap.min.js"></script>
<script type="module" src="main.js"></script>
</head>
<body>
<!-- Navigation -->
<nav class="navbar sticky-top navbar-light bg-white nav-tabs">
<a class="navbar-brand" href="#"><img src="images/coin_icon.png" width="30" height="30" class="d-inline-block align-top mr-2" alt="">cryptoicons.co</a>
<ul class="nav justify-content-end">
<li class="nav-item"><a class="btn btn-outline-primary" href="https://github.com/atomiclabs/cryptocurrency-icons/archive/master.zip">Download</a></li>
</ul>
</nav>
<!-- Header -->
<header class="jumbotron text-center bg-white">
<img src="images/[email protected]" width="128px" alt="Cryptocurrency Icons">
<h1>Cryptocurrency Icons</h1>
<p class="lead">A set of <span class="count-cryptos"></span> crypto and fiat currency icons. <span class="text-muted">Completely free.</span></p>
<p class="lead mt-5">
<a class="btn btn-outline-primary btn-lg" href="https://github.com/atomiclabs/cryptocurrency-icons/">Learn more</a>
<a class="btn btn-primary btn-lg" href="https://github.com/atomiclabs/cryptocurrency-icons/archive/master.zip">Download</a>
</p>
</header>
<!-- Icon List -->
<section class="text-center mb-5">
<div class="container">
<!-- Search -->
<form class="mt-3">
<input class="form-control form-control-lg search" type="text" placeholder="Search icons">
</form>
<!-- Placeholder -->
<div class="row icons mt-5">
<div class="col-6 col-lg-4 col-xl-3 text-left icon">
<span class="placeholder bg-light d-block p-4"> </span>
</div>
<div class="col-6 col-lg-4 col-xl-3 text-left icon">
<span class="placeholder bg-light d-block p-4"> </span>
</div>
<div class="col-6 col-lg-4 col-xl-3 text-left icon">
<span class="placeholder bg-light d-block p-4"> </span>
</div>
<div class="col-6 col-lg-4 col-xl-3 d-lg-none d-xl-block text-left icon">
<span class="placeholder bg-light d-block p-4"> </span>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="text-center mt-5 mb-5">
<div class="container">
<ul class="list-inline mt-5">
<li class="list-inline-item"><a class="text-secondary" href="https://github.com/atomiclabs/cryptocurrency-icons/blob/master/LICENSE.md">License</a></li>
<li class="list-inline-item"><a class="text-secondary" href="https://github.com/imnotadeveloper">Site by @imnotadeveloper</a></li>
</ul>
</div>
</footer>
<!-- Modal -->
<div class="modal fade" id="infoIcon" tabindex="-1" role="dialog">
<div class="modal-dialog modal-dialog-centered modal-lg" role="document">
<div class="modal-content">
<div class="modal-body bg-white">
</div>
</div>
</div>
</div>
</body>
</html>