-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmostradores.html
46 lines (35 loc) · 999 Bytes
/
mostradores.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
<!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="./mostradores.html">Vitrina V1</a></li>
<li> <a class="link" href="./mostradores.html">Vitrina V2</a></li>
<li> <a class="link" href="./mostradores.html">Vitrina V3</a></li>
<li> <a class="link" href="./mostradores.html">Vitrina V4</a></li>
</ul>
</nav>
<button>Mis favoritos</button>
</header>
<section class="seccionPrincipal">
<article>
<h1>Vitrina</h1>
<h2>Selecciona un mostrador</h2>
</article>
</section>
<section class="seccionMostrador" id="seccionMostrador"></section>
<script>
require('./js/mostrador.js')
</script>
</body>
</html>