-
Notifications
You must be signed in to change notification settings - Fork 2
/
logros.html
132 lines (130 loc) · 4.39 KB
/
logros.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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
<!doctype html>
<html lang="es">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/styles.css">
<link href="https://fonts.googleapis.com/css?family=Righteous&display=swap" rel="stylesheet">
<title>Página genérica</title>
</head>
<body>
<div class="contenedor">
<div class="text-center">
<h1>Página genérica</h1>
</div>
<nav class="navbar navbar-expand-lg bg-dark">
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav mr-auto">
<li class="nav-item active">
<a class="nav-link" href="index.html">Inicio <span class="sr-only">(current)</span></a>
</li>
<a class="nav-link dropdown-toggle" data-toggle="dropdown" href="#" role="button" aria-haspopup="true" aria-expanded="false">Opciones</a>
<div class="dropdown-menu">
<a class="dropdown-item" href="#">Action</a>
<a class="dropdown-item" href="#">Another action</a>
<a class="dropdown-item" href="#">Something else here</a>
<div class="dropdown-divider"></div>
<a class="dropdown-item" href="#">Separated link</a>
</div>
<li class="nav-item">
<a class="nav-link" href="formulario.html">Contacto</a>
</li>
<li class="nav-item">
<a class="nav-link" href="galeria.html">Galería</a>
</li>
<li class="nav-item">
<a class="nav-link" href="logros.html">Premios</a>
</li>
<li class="nav-item">
<a class="nav-link" href="videos.html">Tutoriales</a>
</li>
<li class="nav-item dropdown">
</ul>
<form class="form-inline my-2 my-lg-0">
<input class="form-control mr-sm-2" type="search" placeholder="Search" aria-label="Search">
<button class="btn btn-outline-light my-2 my-sm-0" type="submit">Search</button>
</form>
</div>
</nav>
<div class="container">
<div class="tabla">
<table class="table">
<thead class="thead-dark">
<tr>
<th scope="col">Año</th>
<th scope="col">Premio</th>
<th scope="col">Imagen</th>
</tr>
</thead>
<tbody>
<tr>
<td>2019</td>
<td>National Geographic</td>
<td><img src="images/p1.jpg" width="100" height="100" alt="premiouno"></td>
</tr>
<tr>
<td>2017</td>
<td>International Photography Awards</td>
<td><img src="images/p2.jpg" width="100" height="100" alt="premiouno"></td>
</tr>
<tr>
<td>2015</td>
<td>Siena International Photo Awards</td>
<td><img src="images/p3.jpg" width="100" height="100" alt="premiouno"></td>
</tr>
<tr>
<td>2012</td>
<td>Premios One Eyeland</td>
<td><img src="images/p4.jpg" width="100" height="100" alt="premiouno"></td>
</tr>
<tr>
<td>2011</td>
<td>Premios Neuquén Capital</td>
<td><img src="images/p5.jpg" width="100" height="100" alt="premiouno"></td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="pie">
<p>Página de: EQUIPO TRES CORP.</p>
<!--Grid column-->
<!--Grid column-->
<div class="col-md-6 mb-4">
<!--Card-->
<div class="card card-cascade narrower">
<!--Card image-->
<div class="view view-cascade gradient-card-header peach-gradient">
<h5 class="mb-0">Custom map</h5>
</div>
<!--/Card image-->
<!--Card content-->
<div class="card-body card-body-cascade text-center">
<!--Google map-->
<div id="map-container-google-9" class="z-depth-1-half map-container-5" style="height: 300px">
<iframe src="https://maps.google.com/maps?q=Madryt&t=&z=13&ie=UTF8&iwloc=&output=embed" frameborder="0"
style="border:0" allowfullscreen></iframe>
</div>
</div>
<!--/.Card content-->
</div>
<!--/.Card-->
</div>
<!--Grid column-->
</div>
<!--Grid row-->
</div>
<a href="#"><img src="images/flecha_arriba.png" alt="" id="arriba" /></a>
</div>
<!-- Cierre de contenedor -->
<!-- <img src="images/162-1366x300-blur_1.jpg" alt="" class="img-fluid"> ejemplo de imagen -->
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="js/jquery-3.3.1.slim.min.js"></script>
<script src="js/popper.min"></script>
<script src="js/bootstrap.min.js"></script>
</body>
</html>