-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathindex.html
More file actions
38 lines (33 loc) · 1.11 KB
/
index.html
File metadata and controls
38 lines (33 loc) · 1.11 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="icon" href="assets/icons/icon_head.ico">
<link rel="stylesheet" href="vendors/bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" href="css/main.css">
<title>Codebook</title>
</head>
<body>
<main id="splash" class="container-fluid min100vh d-flex flex-column align-items-center justify-content-center">
<!-- Logo -->
<div class="logo col-8 col-md-4 my-4">
<figure>
<img src="assets/images/codebook-logo-blanco.svg" alt="">
</figure>
</div>
<!-- Animación de carga -->
<div class="loader">
<div class="dot"></div>
<div class="dot"></div>
<div class="dot"></div>
</div>
</main>
<!-- jQuery -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<!-- Bootstrap -->
<script src="vendors/bootstrap/js/bootstrap.min.js"></script>
<script src="js/splash.js"></script>
</body>
</html>