-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmedia_1.html
52 lines (51 loc) · 2.25 KB
/
media_1.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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<meta name="description" content="">
<meta name="author" content="">
<title>Multimedia 1</title>
<link rel="shortcut icon" href="img/favicon.ico" />
<!-- Bootstrap core CSS -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/bootstrap-theme.min.css" rel="stylesheet">
<link href="css/custom.css" rel="stylesheet">
</head>
<body>
<div class="container">
<div id="menu-container"> </div>
<div class="page">
<div class="alert alert-info no-margin" role="alert">
<strong>Descripción:</strong> Este video trata sobre Seguridad de la red: Que es un Hacker
<a href="media_2.html" class="btn btn-warning pull-right" aria-label="Left Align">
Video 2
<span class="glyphicon glyphicon-triangle-right" aria-hidden="true"></span>
</a>
</div>
<div class="row">
<div class="col-sm-12">
<div class="embed-responsive embed-responsive-16by9">
<iframe class="embed-responsive-item" src="https://www.youtube.com/embed/3C00UA_qvHI"></iframe>
</div>
</div>
</div>
</div>
</div> <!-- /container -->
<footer class="footer">
<div class="container" id="ft-cont">
</div>
</footer>
<script src="js/jquery-3.1.1.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script>
$(document).ready(function() {
$("#menu-container").load("menu.html");
$("#ft-cont").load("footer.html");
$("#mnmedia").addClass("active");
});
</script>
</body>
</html>