-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
564 lines (511 loc) · 13.1 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
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
<!DOCTYPE html>
<html lang="es">
<head>
<title>Modelado de Datos</title>
<meta charset="UTF-8">
<!-- Etiquetas SEO -->
<meta content="Diego Alexander Salamanca Becerra" name="author">
<meta content="Administracion de redes" name="description">
<!-- Etiqueta visualización viewport -->
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<!-- Estilos -->
<style type="text/css">
*{
margin:0;
padding:0;
font-family:Arial;
box-sizing: border-box;
}
main{
width:100%;
}
#header{
top:0;
left:0;
margin:auto;
width:1366px;
min-width: 1024px;
height:100px;
position:fixed;
z-index:1000;
background-color:rgba(255,255,255,1);
-webkit-box-shadow: 3px 10px 13px -6px rgba(0,0,0,0.45);
-moz-box-shadow: 3px 10px 13px -6px rgba(0,0,0,0.45);
box-shadow: 3px 10px 13px -6px rgba(0,0,0,0.45);
}
.subheader{
width:90%;
margin:5px auto;
border-collapse: separate;
}
.col1{
width:300px;
text-align: center;
}
.col2{
width:90%;
margin:auto;
padding-left:12px;
}
.logo{
width:250px;
height:auto;
padding:10px;
}
ul, li{
text-align:center;
list-style: none;
}
.nav li a{
color:#000;
min-width:150px;
display:block;
padding:10px 15px;
background-color:rgba(255,255,255,1);
text-decoration: none;
}
/* usando la pseudoclase hover */
.nav li a:hover{
background-color:rgba(63,137,201,.3);
}
.nav >li{
float:left;
}
.nav li ul{
display:none;
position:absolute;
min-width:150px;
}
.nav li:hover > ul{
display:block;
}
.nav li ul li{
z-index:1002;
position:relative;
}
#inicio{
width:100%;
height:70vh;
position:relative;
background-image:url('img/cursovirtual.png');
background-repeat:no-repeat;
background-attachment: fixed;
background-size:100%;
background-origin: content-box;
background-position: top center;
}
.row{
width:90%;
margin:auto;
}
.info{
width:90%;
margin:auto;
border-collapse: separate;
border-spacing:5px;
}
.side{
width:35%;
height:450px;
padding:10px;
border-radius:7px;
background-color:rgba(255,218,0,1);
}
.side tr{
border-radius:7px;
background-color:rgba(255,255,255,1);
}
.side td{
padding:10px;
}
td p{
text-align: justify;
}
td>li{
list-style-type: square;
text-align:justify;
}
h2{
width:100%;
color:#BC3808;
line-height: 4rem;
border-radius:7px;
text-align: center;
background-color:rgba(255,218,0,1);
}
#tematica{
width:100%;
padding:20px;
vertical-align: center;
background-color:rgba(255,255,255,1);
}
.row h1{
padding:10px;
margin:auto;
font-size:42px;
text-align: center;
color:rgba(255,255,255,1);
background-color:rgba(51,51,51,1);
}
.fila{
width:100%;
margin:auto 100px;
display:inline-flex;
}
figure:nth-child(1){
padding:0;
}
figure{
padding-left:25px;
}
#titulo1{
width:364px;
height:50px;
overflow:hidden;
vertical-align: middle;
background-color:rgba(165,70,134,1);
}
#titulo1>h3{
padding:15px;
text-align: center;
color:rgba(255,255,255,1);
text-shadow: rgb(46, 46, 46) 0px 4px 5px;
}
#titulo2{
width:364px;
height:50px;
overflow:hidden;
vertical-align: middle;
background-color:rgba(244,121,32,1);
}
#titulo2>h3{
padding:15px;
text-align: center;
color:rgba(255,255,255,1);
text-shadow: rgb(46, 46, 46) 0px 4px 5px;
}
#titulo3{
width:364px;
height:50px;
overflow:hidden;
text-align:center;
background-color:rgba(80,183,72,1);
}
#titulo3>h3{
padding:15px;
text-align: center;
color:rgba(255,255,255,1);
text-shadow: rgb(46, 46, 46) 0px 4px 5px;
}
#titulo4{
width:364px;
height:50px;
overflow:hidden;
vertical-align: middle;
background-color:rgba(240,180,41,1);
}
#titulo4>h3{
padding:15px;
text-align: center;
color:rgba(255,255,255,1);
text-shadow: rgb(46, 46, 46) 0px 4px 5px;
}
#titulo5{
width:364px;
height:50px;
overflow:hidden;
vertical-align: middle;
background-color:rgba(67,99,244,1);
}
#titulo5>h3{
padding:15px;
text-align: center;
color:rgba(255,255,255,1);
text-shadow: rgb(46, 46, 46) 0px 4px 5px;
}
figcaption{
width:364px;
text-align:center;
background-color:rgba(179,179,179,.3);
}
figcaption>p{
padding:10px;
}
#informes{
width:100%;
height:70vh;
background-image:url('img/agent-18762_1280.jpg');
background-repeat:no-repeat;
background-attachment: fixed;
background-size:35% 100%;
background-position: left;
}
.datos{
width:70%;
margin:auto;
padding-top:130px;
padding-left:300px;
border-collapse: separate;
border-spacing: 5px;
text-align: center;
}
.datos>strong{
text-align: center;
}
.contacto{
color:rgba(0,102,128,1) !important;
background-color:transparent !important;
}
footer{
width:100%;
max-height:20%;
vertical-align: middle;
background-color:rgba(0,88,131,1);
}
.aside{
width: 48%;
margin:30px auto;
border-color:yellow solid 2px;
display:inline-block;
}
.aside a{
color:rgba(255,255,255,1);
text-decoration: none;
}
.block{
width:100%;
border-spacing: 5px;
border-collapse: separate;
color:rgba(255,255,255,1);
}
#counter{
color:rgba(253,245,0,1);
text-align:center;
font-size: 38px;
font-weight: 700;
}
.linkq:hover{
zoom:1.1;
cursor:pointer;
}
</style>
<script type="text/javascript" src="js/jquery-3.1.1.min.js"></script>
<body>
<!-- Contenedor principal -->
<main>
<div id="header"> <!-- Contenedor del menú -->
<table class="subheader">
<tr>
<td class="col1">
<a href="https://centroriente.unad.edu.co/zona-centro-oriente/unad-contactenos-zona-centro-oriente"><img src="img/unad.png" class="logo" alt="Universidad Nacional Abierta y a Distancia"></a>
</td>
<td class="col2">
<ul class="nav">
<li><a href="index.html">Inicio</a></li>
<li><a href="lecturas.html">Recursos</a>
<ul>
<li><a href="lecturas.html#lectura1">Lectura 1</a></li>
<li><a href="lecturas.html#lectura2">Lectura 2</a></li>
<li><a href="lecturas.html#lectura3">Lectura 3</a></li>
<li><a href="lecturas.html#lectura4">Lectura 4</a></li>
<li><a href="lecturas.html#lectura5">Lectura 5</a></li>
</ul>
</li>
<li><a href="multimedia.html">Multimedia</a>
<ul>
<li><a href="multimedia.html#video1">Video 1</a></li>
<li><a href="multimedia.html#video2">Video 2</a></li>
</ul>
</li>
<li><a href="actividades.html">Actividades</a>
<ul>
<li><a href="actividades.html#tema1">Tema 1</a></li>
<li><a href="actividades.html#tema2">Tema 2</a></li>
<li><a href="actividades.html#tema3">Tema 3</a></li>
<li><a href="actividades.html#tema4">Tema 4</a></li>
<li><a href="actividades.html#tema5">Tema 5</a></li>
</ul>
</li>
<li><a href="autor.html">Autor</a></li>
</ul>
</td>
</tr>
</table>
</div>
<!-- Banner inicial -->
<section id="inicio"></section>
<!-- Sección que contiene la información general del curso -->
<section id="info">
<div class="container">
<div class="row" style="padding-top:40px; padding-bottom:40px;">
<table class="info">
<tr>
<td><h2>Información General</h2></td>
<td></td>
<td><h2>Objetivos</h2></td>
</tr>
<tr>
<td style="width:45%;">
<table class="side" cellpadding="10" style="width:100%; background-color:rgba(255,218,0,1);">
<tr>
<td><strong>Código:</strong></td>
<td>204038</td>
</tr>
<tr>
<td><strong>Curso:</strong></td>
<td>Administración de Redes</td>
</tr>
<tr>
<td><strong>Programa:</strong></td>
<td>Ingenieria de Sistemas</td>
</tr>
<tr>
<td><strong>Temática:</strong></td>
<td>Redes y Seguridad</td>
</tr>
<tr>
<td><strong>Descripción:</strong></td>
<td>
<p> Identificar la red, su seguridad, su infraestructura y su integridad total </p>
</td>
</tr>
</table>
</td>
<td style="width:10%;"></td>
<td style="width:45%;">
<table class="side" style="width:100%; background-color:rgba(255,218,0,1);">
<tr>
<td>
<li>Identificar la red, su seguridad, su infraestructura y su integridad total</li>
</td>
</tr>
<tr>
<td>
<li>Buscar, corregir y prevenir amenazas por software que puedan impactar la funcionalidad de la red</li>
</td>
</tr>
<tr>
<td>
<li>reducción de cuellos de botella en la red, usando un monitor centralizado</li>
</td>
</tr>
<tr>
<td>
<li> Crear una alta eficiencia de la red, teniendo en cuenta costos, manejo de datos y privacidad de la información </li>
</td>
</tr>
<tr>
<td>
<li>Realizar videos explicativos del procedimiento realizado.</li>
</td>
</tr>
</table>
</td>
</tr>
</table>
</div>
</div>
</section>
<!-- Sección que contiene la descripción de los temas del curso -->
<section id="tematica">
<div class="container">
<div class="row">
<h1>Temática del Curso</h1>
<br>
</div>
<br>
<div class="fila" id="contenedor">
<figure>
<div id="titulo1"><h3>Tema 01. Prevención de amenazas</h3></div>
<img src="img/prevame.jpg" alt="diagramando" width="364" height="288">
<figcaption><p>ejemplo de una de las herramientas para la prevención.</p></figcaption>
</figure>
<figure>
<div id="titulo2"><h3>Tema 02. Analisis de Red</h3></div>
<img src="img/map1102.jpg" alt="diagramando" width="364" height="288">
<figcaption><p>El análisis de redes es el área encargada de analizar las redes mediante la teoría de redes.</p></figcaption>
</figure>
<figure>
<div id="titulo3"><h3>Tema 03. Mejoramiento de la Red</h3></div>
<img src="img/mejorared.jpg" alt="diagramando" width="364" height="288">
<figcaption><p>las practicas que tal vez son comunes pueden poner en riesgo nuestra privacidad.</p></figcaption>
</figure>
</div>
</div>
</section>
<!-- Sección que contiene la información de contacto de la entidad -->
<!--<section id="informes">
<div class="container">
<div class="row">
<table class="datos">
<tr>
<td rowspan="2">
<h1 class="contacto">Contáctenos</h1>
</td>
<td>
<a href="https://goo.gl/forms/61IK3qW7laYS19c43" class="linkq" title="Escríbenos"><img src="img/correo.png" alt="Correo Electrónico Universidad"></a>
</td>
<td>
<a href="#"><img src="img/phone.png" alt="telefono" title="PBX:(+57) 1 344 3700 Bogotá D.C. Colombia"></a>
</td>
<td>
<a href="#"><img src="img/office.png" alt="" title="Sede Nacional: Calle 14 Sur No. 14 - 23"></a>
</td>
</tr>
</table>
</div>
</div>
</section> -->
<!-- Pie de página -->
<footer>
<div class="container">
<div class="row">
<div class="aside">
<table class="block">
<tr>
<td colspan="2">
<small>Diseño y Creación: <a href="autor.html">Diego Salamanca</a> ®</small>
<br>
<td>
</tr>
<tr>
<td>
<img src="img/commons.png" alt="license" style="width:100px; height:auto;">
<br>
</td>
</tr>
<tr>
<td>Eres el visitante No.</td>
</tr>
<tr>
<td>
<!-- Contador de visitas -->
<center><a href="http://www.websmultimedia.com/contador-de-visitas-gratis" title="Contador De Visitas Gratis">
<img style="border: 0px solid; display: inline;" alt="contador de visitas" src="http://www.websmultimedia.com/contador-de-visitas.php?id=234444"></a><br><a href='http://www.websmultimedia.com/contador-de-visitas-gratis'></a><br><a href='http://www.websmultimedia.com'></a></center>
<!-- Fin Contador de visitas -->
</td>
</tr>
<tr>
<td><img src="img/sellos_calidad.png" alt="Calidad" style="width:65%; height:auto;"></td>
</tr>
</table>
</div>
<!--
<div class="aside">
<a class="twitter-timeline" data-height="300" href="https://twitter.com/container">Tweets by DiegoS</a> <script async src="//platform.twitter.com/widgets.js" charset="utf-8"></script>
</div> -->
</div>
</div>
</footer>
</main>
<script type="text/javascript" src="js/jquery-3.1.1.min.js"></script>
<script type="text/javascript">
//Hacemos la Function para abrir el contador de visitas
function recargar_views(){
$(".views").load("contador.txt");
}
// Establecemos el temporizador a 1 segundos
timer = setInterval("recargar_views()", 1000);
</script>
</body>
</html>