-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbillete.html
66 lines (54 loc) · 2.36 KB
/
billete.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<!DOCTYPE html>
<html lang="en">
<head>
<!DOCTYPE html>
<meta name="author" content="Silvina Ciampechini - Douglas Ojeda - Daniela Patané">
<meta name="keywords" content="miniserie, rosarinos">
<meta name="description" content="Productora audiovisual liderada por un equipo muy heterogéneo pero con un mismo objetivo: la creatividad y la cultura">
<meta name="robots" content="index">
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>El Portazo/Billete de 100</title>
<link rel="icon" type="image/x-icon" href="./img/logoepbyn.png">
<link rel="stylesheet" href="css/styles.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,[email protected],100..700,0..1,-50..200">
<script src="https://kit.fontawesome.com/5388f691ef.js" crossorigin="anonymous"></script>
<script defer src="app.js"></script>
<script defer src="ham.js"></script>
</head>
<body>
<!--HEADER-->
<header>
<nav>
<a href="index.html">
<img class="logo" src="img/logoepbyn.png" width=60px height=60px alt="logo El portazo">
</a>
<ul class="menu">
<li><a href="nosotros.html">Nosotros</a></li>
<li><a href="producciones.html">Producciones</a></li>
<li><a href="contacto.html">Contacto</a></li>
</ul>
<button class="nav-toggle" aria-label="Abrir menú">
<i class="fa-solid fa-bars"></i>
</button>
</nav>
</header>
<!--SECTION-->
<div class="contenedor-texto">
<div class=titulo2><span>Billete de 100</span></div>
<div class="bg-text">Próximamente</div>
</div>
<!--FOOTER-->
<footer>
<div id="iconos">
<a href="https://www.instagram.com/"><i class="fa-brands fa-square-instagram"></i></a>
<a href="https://www.youtube.com/ "><i class="fa-brands fa-youtube"></i></a>
<a href="https://twitter.com/home"><i class="fa-brands fa-twitter"></i></a>
</div>
<div class="copyright">El Portazo - Copyright Silvina Ciampechini - Douglas Ojeda - Daniela Patané. © Todos los Derechos Reservados 2022.</div>
</footer>
</body>
</html>