-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
51 lines (46 loc) · 1.44 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
45
46
47
48
49
50
51
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width">
<meta name="author" content="Matías Mangiantini">
<meta name="description" content="Sitio web de información sobre Los 7 Reinos.">
<link rel="shortcut icon" href="./favicon.ico" type="image/x-icon">
<link rel="stylesheet" type="text/css" href="styles/normalize.min.css">
<link rel="stylesheet" type="text/css" href="styles/general.css">
<script type="text/javascript" src="javascript/ajax.js"></script>
</head>
<body>
<header>
<img src="./img/logo.svg" id="logo" alt="Logo">
<nav id="menu">
<ul>
<li id="inicio-li">
<a href="#inicio">Inicio</a>
</li>
<li id="acerca-li">
<a href="#acerca">Acerca</a>
</li>
<li id="contacto-li">
<a href="#contacto">Contacto</a>
</li>
</ul>
</nav>
</header>
<main>
<div id="triangulo"></div>
<section id="contenido"></section>
</main>
<footer>
<a href="https://www.facebook.com/GameOfThrones/" class="social">
<img src="./img/social/facebook.svg" alt="Facebook" >
</a>
<a href="https://twitter.com/GameOfThrones" class="social">
<img src="./img/social/twitter.svg" alt="Twitter" >
</a>
<a href="https://www.youtube.com/user/GameofThrones" class="social">
<img src="./img/social/youtube.svg" alt="Youtube">
</a>
</footer>
</body>
</html>