-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreading_4.html
56 lines (54 loc) · 2.48 KB
/
reading_4.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
<!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>Lectura 4</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 documento habla sobre temas relacionados con la "Identificación de ataques y técnicas de intrusión"
<a href="reading_5.html" class="btn btn-warning pull-right" aria-label="Left Align"> Lectura 5
<span class="glyphicon glyphicon-triangle-right" aria-hidden="true"></span>
</a>
<a href="reading_3.html" class="btn btn-warning pull-right" aria-label="Left Align">
<span class="glyphicon glyphicon-triangle-left" aria-hidden="true"></span>
Lectura 3
</a>
</div>
<div class="row">
<div class="col-lg-10 col-lg-offset-1">
<div id="pdfdocument"></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 src="js/pdfobject.min.js"></script>
<script>
$(document).ready(function() {
$("#menu-container").load("menu.html");
$("#ft-cont").load("footer.html");
$("#mnread").addClass("active");
PDFObject.embed("docs/reading_4.pdf", "#pdfdocument");
});
</script>
</body>
</html>