forked from hetoarte/proyecto-intro-a-la-ingenieria-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
154 lines (132 loc) · 7.08 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
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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
<!DOCTYPE html>
<html lang="es">
<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">
<title>nomechomath</title>
<!--google fonts-->
<link href="https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet">
<!--bootstrap 4-->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<!--custom css-->
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<!--barra de navegacion-->
<nav class="navbar navbar-expand-lg navbar-light bg-info p-3">
<div class="container">
<a class="navbar-brand" href="index.html">nomechomath</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNavDropdown" aria-controls="navbarNavDropdown" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNavDropdown">
<ul class="navbar-nav ml-auto">
<li class="nav-item dropdown p-1 px-3">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdownMenuLink" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
cursos
</a>
<div class="dropdown-menu" aria-labelledby="navbarDropdownMenuLink">
<a class="dropdown-item" href="mate 021/mate 021.html">mate 021</a>
<a class="dropdown-item" href="mate 022/mate 022.html">mate 022</a>
<a class="dropdown-item" href="mate 023/mate 023.html">mate 023</a>
<a class="dropdown-item" href="mate 024/mate 024.html">mate 024</a>
</div>
</li>
<li class="nav-item p-1 px-3">
<a class="nav-link" href="subir archivo.html">Subir material</a>
</li>
<li class="nav-item p-1 pl-3">
<a class="nav-link" href="nosotros.html">nosotros</a>
</li>
</ul>
</div>
</div>
</nav>
<!--imagenes -->
<div id="carouselExampleControls" class="carousel slide img-slide" data-ride="carousel">
<div class="carousel-inner ">
<div class="carousel-item active">
<img src="imagenes/prestigio.jpg" class="d-block w-100" alt="...">
</div>
<div class="carousel-item">
<img src="imagenes/prestigio.jpg" class="d-block w-100" alt="not">
</div>
<div class="carousel-item">
<img src="imagenes/prestigio.jpg" class="d-block w-100" alt="not found">
</div>
</div>
<a class="carousel-control-prev" href="#carouselExampleControls" role="button" data-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#carouselExampleControls" role="button" data-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
<!--cursos-->
<!-- <div class="container botones">
<button type="button" class="btn btn-primary btn-lg bot">MAT 021</button>
<button type="button" class="btn btn-primary btn-lg bot">MAT 022</button>
<button type="button" class="btn btn-primary btn-lg bot">MAT 023</button>
<button type="button" class="btn btn-primary btn-lg bot">MAT 024</button>
</div> -->
<div class="container tex">
<h2 class="text-center">¿que es nomechomath?</h2>
<p> la pagina mas perrona para que nunca mas repruebas mate Lorem ipsum dolor sit, amet consectetur adipisicing elit. Animi aspernatur ea, commodi molestiae, veniam perspiciatis
consequatur dolorum doloremque cum eaque consequuntur eum adipisci at, fugit id inventore nemo perferendis! Ab.
Lorem, ipsum dolor sit amet consectetur adipisicing elit. Est at, distinctio, labore nisi, voluptatem sapiente hic doloremque
porro cum rem debitis necessitatibus harum ducimus unde. Dignissimos quasi pariatur enim recusandae!</p>
<hr>
</div>
<!--integrantes del grupo -->
<div class="container ">
<h2 class="text-center">Contacto</h2>
<div>
<p class="text-center">Dudas o problemas con la plataforma comunicarse a la siguiente direccion de correo </p>
<p class="text-center">[email protected]</p>
</div>
</div>
<!-- Footer -->
<footer class="page-footer font-small bg-info">
<!-- Copyright -->
<div class="footer-copyright text-center py-3">© 2019 Copyright:
<a> nomechomath.com</a>
<a href="login.html">admin</a>
<div id="contenido"> </div>
</div>
<!-- Copyright -->
</footer>
<!-- Footer -->
<!-- The core Firebase JS SDK is always required and must be listed first -->
<script src="https://www.gstatic.com/firebasejs/7.6.1/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/7.6.1/firebase-auth.js"></script>
<script src="https://www.gstatic.com/firebasejs/7.6.1/firebase-firestore.js"></script>
<!-- TODO: Add SDKs for Firebase products that you want to use
https://firebase.google.com/docs/web/setup#available-libraries -->
<script src="https://www.gstatic.com/firebasejs/7.6.1/firebase-analytics.js"></script>
<script>
// Your web app's Firebase configuration
var firebaseConfig = {
apiKey: "AIzaSyC_iWR7LnaW5Pej9C8fKGcaqOLp_vLEmiM",
authDomain: "nomechomath-2328d.firebaseapp.com",
databaseURL: "https://nomechomath-2328d.firebaseio.com",
projectId: "nomechomath-2328d",
storageBucket: "nomechomath-2328d.appspot.com",
messagingSenderId: "728436986114",
appId: "1:728436986114:web:b93516ff4511215b5a321b",
measurementId: "G-HCC6L2YWCD"
};
// Initialize Firebase
firebase.initializeApp(firebaseConfig);
firebase.analytics();
</script>
<script src="js/code.js"></script>
<script src="js/fire.js"></script>
<!--bootstrap 4 script-->
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
</body>
</html>