-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathiibi.html
More file actions
96 lines (81 loc) · 2.91 KB
/
iibi.html
File metadata and controls
96 lines (81 loc) · 2.91 KB
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
<html>
<head>
<title>Proyectos IIBI</title>
<link href='css/footer.css' rel='stylesheet' type='text/css'>
<link href='css/menu.css' rel='stylesheet' type='text/css'>
<link href='css/pagestyle.css' rel='stylesheet' type='text/css'>
<link href='css/pre.css' rel='stylesheet' type='text/css'>
<link href="css/mid.css" rel="stylesheet"/>
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet">
<script src="js/menu.js" type="text/javascript"></script>
<meta content='width=device-width, initial-scale=0.75, maximum-scale=1.0' name='viewport'>
<!-- uses google-code-prettify for syntax highlighting
see https://github.com/google/code-prettify/ for more info -->
<script src="https://cdn.jsdelivr.net/gh/google/code-prettify@master/loader/run_prettify.js"></script>
</head>
<body>
<div class="header" id="header">
<div class="topnav" id="myTopnav">
<a class="header_item" href="index.html">Inicio</a>
<a class="header_item" href="sitio.html">Sitio</a>
<!--a class="header_item" href="about.html">Notas</a>
<a class="header_item" href="faq.html">FAQ</a-->
<a class="icon" href="javascript:void(0);" onclick="myFunction()">
<i class="fa fa-bars"></i>
</a>
</div>
<audio id="my_audio"></audio>
<img id="mid" onclick="play_pause()" src="mid/icon.png">
<script>
var playing = 0;
var myAudio = document.getElementById('my_audio');
setup_audio_continuer();
function setup_audio_continuer()
{
myAudio.onended = function()
{
myAudio.src = "./mid/wr3ckord_1.mp3";
myAudio.play();
}
}
function play_pause()
{
if(playing)
{
playing = 0;
myAudio.pause();
document.getElementById("mid").src = "./mid/icon.png";
}
else
{
playing = 1;
myAudio.src = "./mid/wr3ckord_1.mp3";
myAudio.play();
document.getElementById("mid").src = "./mid/icon.gif";
}
}
</script>
<h2>Cámara Nacional de la Industria Editorial Mexicana</h2>
<img class="logo" src="img/iibi.png" style="max-width: 90%; margin-top:15px" width="100px"><br>
</div>
<div class="content">
<h2>Proyectos IIBI</h2>
<ul>
<li><a href="sitio.html">Sitio</a></li>
<li>CANIEM</li>
</ul>
</div>
<div class="footer">
<div class="footer_text">ReyMon</div>
<noselect><img src="img/nsm.png" style="margin-bottom:20px" width="30px">
<br></noselect>
<p style="margin-top:0px">
<small>Site Manager: <a href="https://nift.dev">Nift</a></small>
</p>
<noselect><small>© 2021 -
<script>document.write(new Date().getFullYear())</script>
<a href="http://aws.reymon.mx/">RRC</a></small>
<br><br></noselect>
</div>
</body>
</html>