-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
82 lines (69 loc) · 2.73 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
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
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Laboratorio de química 3D</title>
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="./css/bootstrap.min.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@300&display=swap" rel="stylesheet">
<!-- Plantilla normalize -->
<link rel="stylesheet" href="./css/normalize.css">
</head>
<style>
body {
/* max-width: 100%; */
background-color: #ffffff;
background-image: url("repetir.png");
/* background-position: center; */
/* Center the image */
background-repeat: repeat;
/* Do not repeat the image */
background-size: 7%;
text-transform: uppercase;
margin: auto;
}
nav {
font-family: 'Montserrat';
font-size: small;
}
.i_frame {
margin-left: 10%;
margin-top: 20px;
}
</style>
<body>
<nav class="navbar navbar-expand-lg navbar-light bg-light" style="background-color: #ffffff;">
<div class=" container">
<a class="navbar-brand" href="#">
<img src="atomo.gif" alt="" height="44">
QUÍMICA 3D
</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav"
aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<!-- <a class="navbar-brand" href="#"></a> -->
<ul class="navbar-nav">
<li class="nav-item"><a class="nav-link" href="uno.html" target="ifrm">Componentes</a></li>
<li class="nav-item"><a class="nav-link" href="dos.html" target="ifrm">Movimiento</a></li>
<li class="nav-item"><a class="nav-link" href="tres.html" target="ifrm">Hexagono</a></li>
<li class="nav-item"><a class="nav-link" href="./cuatro/cuatro.html" target="ifrm">Casa</a></li>
</ul>
</div>
</div>
</nav>
<div class="container-fluid">
<div class="row d-flex align-items-center">
</div>
<div class="row">
<div class="col pt-2 i_frame">
<iframe src="uno.html" name="ifrm" width="90%" height="700px" frameborder="0"> </iframe>
</div>
</div>
</div>
</body>
</html>