-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
52 lines (39 loc) · 1.07 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
52
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Pagina principal</title>
<link rel="stylesheet" href="css/estilos.css">
<link href="https://fonts.googleapis.com/css?family=Lora|Lato" rel="stylesheet">
</head>
<body>
<header class="header">
<a href="./index.html">
<img class="logo" src="img/group-3.png" alt="" >
</a>
<nav>
<ul>
<li> <a class="link" href="./index.html">Vitrina V1</a></li>
<li> <a class="link" href="./index.html">Vitrina V2</a></li>
<li> <a class="link" href="./index.html">Vitrina V3</a></li>
<li> <a class="link" href="./index.html">Vitrina V4</a></li>
</ul>
</nav>
<button id="fav">Mis favoritos</button>
</header>
<section class="seccionPrincipal">
<article>
<h1>Bienvenido al museo de la moneda</h1>
<h2>Selecciona una vitrina</h2>
</article>
</section>
<section class="seccionVitrinas" id="seccionVitrinas"></section>
<script>
require('./js/index.js')
require('./js/favoritos.js')
</script>
</body>
</html>
<!-- class: pa todos = .class
id: una vez y ya alv = #id
-->