-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
44 lines (43 loc) · 1.12 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
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>Super Mario Bros</title>
<link rel="stylesheet" href="css/style.css" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.0/jquery.min.js"></script>
<script src='js/super-mario.js'></script>
</head>
<body id = "background">
<div id="layout">
<div id="header">
<div id="headerMenu">
<nav id="headerOptions">
<a class="menu">Inicio</a>
<a class="menu">Acerca de</a>
<a class="menu">Ayuda</a>
</nav>
</div>
<div id="logo">
</div>
</div>
<div id="content">
<div id="gameMenu">
<nav id="gameOptions">
<a class="menu">Nuevo</a>
<a class="menu">Reiniciar</a>
<a class="menu">Guardar</a>
</nav>
</div>
<div id="game">
</div>
</div>
<div id="footer">
<nav id="footerMenu">
<a class='menu' href="http://www.facebook.com/" target="_blank" color="white">Facebook</a>
<a class='menu' href="http://www.twitter.com/" target="_blank" color="white">Twitter</a>
<a class='menu' href="http://www.path.com/" target="_blank" color="white">Path</a>
</nav>
</div>
</div>
</body>
</html>