-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlibro.html
More file actions
70 lines (63 loc) · 2.79 KB
/
libro.html
File metadata and controls
70 lines (63 loc) · 2.79 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
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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="https://cdn.icon-icons.com/icons2/1192/PNG/512/1490820812-14_82398.png"
title="icono recopilatorio" type="image/x-icon" alt="icono recopilatorio">
<title>Libro</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css" rel="stylesheet">
<style>
body{
background-color: #cfcfcf;
}
.caja-enmedio {
background-color: #737373;
height: 130px;
padding: 20px;
border-radius: 9px;
margin-top: 20px;
}
.caja-inferior {
background-color: #ffffff;
height: 800px;
padding: 20px;
border-radius: 9px;
margin-top: 20px;
}
</style>
</head>
<body>
<nav class="navbar navbar-expand-lg" style=" background-color: #6c757d;">
<div class="container-fluid">
<a href="contenido.html" style="text-decoration: none; color: #000;">
<img src="logoRe.png" alt="logo" width="135px">
</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarText" aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarText">
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
</ul>
<span class="navbar-text">
<a href="inicio.html" style="text-decoration: none; color: #000;">
<p style="display: inline;">Salir</p>
<img src="https://cdn-icons-png.flaticon.com/512/35/35805.png" alt="salir" width="25px" title="salir" style="vertical-align: middle;">
</a>
</span>
</div>
</div>
</nav>
<div class="container text-center">
<div class="row justify-content-center">
<div class="col-md-12 m-3">
<div class="caja-inferior d-flex justify-content-center align-items-center">
<iframe style="border-radius: 9px;" src="https://drive.google.com/file/d/1D8t3pdooQUr-4qX-oVsXCoWxAU8XGbCw/preview" width="200%" height="700px" ></iframe>
</div>
</div>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.11.6/dist/umd/popper.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/js/bootstrap.min.js"></script>
</body>
</html>