-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
49 lines (38 loc) · 1.77 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
<!DOCTYPE html>
<!--Tipo de archivo e dioma del sitio web-->
<html lang="en">
<head>
<!--Codificación de carácteres especiales-->
<meta charset="utf-8">
<!-- Define área usada por browser-->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<!-- Tipografías-->
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,400,700" rel="stylesheet">
<!-- Se vinculan estilos-->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<link rel="stylesheet" href="css/style.css">
<!-- Título web page-->
<title>FOODMAP</title>
<!-- Icono página-->
<link rel="shortcut icon" href="../assets/images/huevo.png">
</head>
<body class="splash">
<section class="splash-view" id="slow">
<div class="container-fluid">
<div class="row">
<div class="col-xs-10">
<h1 class="slow-title">FOODMAP</h1>
<h5 class="col-xs-12 subtitle">Mapa de comida regional Mexicana</h5>
<img class="col-xs-offset-4 egg" id="img-splash" src="assets/images/huevo.png" alt="Huevo estrellado">
</div>
</div>
</div>
</section>
<!-- Se vincula jQuery-CDN / Data / JS-->
<script src="https://code.jquery.com/jquery-3.3.1.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
<script src="../js/data.js"></script>
<script src="js/app.js"></script>
</body>
</html>