-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathindex.html
More file actions
43 lines (42 loc) · 1.18 KB
/
index.html
File metadata and controls
43 lines (42 loc) · 1.18 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Codigoprogramacion.com</title>
<link rel="stylesheet" type="text/css" href="style.css" />
</head>
<body>
<section id="main_container">
<header class="header">
<h1>Tutoriales - Html/Css</h1>
<nav class="top_menu">
<ul>
<li><a href="#">Item 1</a></li>
<li><a href="#">Item 2</a></li>
<li><a href="#">Item 3</a></li>
<li><a href="#">Item 1</a></li>
<li><a href="#">Item 2</a></li>
<li><a href="#">Item 3</a></li>
</ul>
</nav>
</header>
<section class="content">
<article>
<div class="slider">
<div id="ele1" class="s_element s_visible" ></div>
<div id="ele2" class="s_element"></div>
<div id="ele3" class="s_element"></div>
</div>
<span><button id="btnAnt">Anterior</button>
<button id="btnSig">Siguiente</button>
</span>
</article>
</section>
<footer class="footer">
<span class="footer_msg"> Este es el pie de página - codigoprogramacion.com</span>
</footer>
</section>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script type="text/javascript" src="script.js"></script>
</body>
</html>