forked from shannonriv/movie-geek
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
38 lines (34 loc) · 1.35 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="vendors/bootstrap/css/bootstrap.min.css">
<!-- Estilos del proyecto -->
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/splash.css">
<title>Movie Geek</title>
</head>
<body id="splash" class="min100vh d-flex flex-column align-items-center justify-content-center">
<div class="logo col-10 col-sm-6 col-lg-4">
<figure><img src="assets/images/moviegeek-logo.svg" class="img-fluid" alt="MovieGeek Logo"></figure>
</div>
<div id="loader">
<div class="ls-particles ls-part-1"></div>
<div class="ls-particles ls-part-2"></div>
<div class="ls-particles ls-part-3"></div>
<div class="ls-particles ls-part-4"></div>
<div class="ls-particles ls-part-5"></div>
<div class="lightsaber ls-left ls-green"></div>
<div class="lightsaber ls-right ls-red"></div>
</div>
<!-- jQuery -->
<script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
<!-- Bootstrap -->
<script src="../vendors/bootstrap/js/bootstrap.min.js"></script>
<!-- Scripts del proyecto -->
<script src="js/splash.js"></script>
</body>
</html>