-
Notifications
You must be signed in to change notification settings - Fork 55
/
Copy pathindex.html
69 lines (67 loc) · 1.94 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="estilos.css">
<title>Flexbox vs CSS Grid</title>
</head>
<body>
<div class="contenedor">
<div class="contenedor-conciertos">
<div class="card" style="background-image: url('./img/1.jpg')">
<div class="textos">
<h3>Rock In Rio</h3>
<p>27 de Octubre 2021</p>
</div>
</div>
<div class="card" style="background-image: url('./img/2.jpg')">
<div class="textos">
<h3>FalconMasters’ Concert</h3>
<p>12 de Noviembre 2021</p>
</div>
</div>
<div class="card" style="background-image: url('./img/3.jpg')">
<div class="textos">
<h3>Coachella</h3>
<p>13 de Diciembre 2021</p>
</div>
</div>
<div class="card" style="background-image: url('./img/4.jpg')">
<div class="textos">
<h3>US Festival</h3>
<p>20 de Diciembre 2021</p>
</div>
</div>
<div class="card" style="background-image: url('./img/5.jpg')">
<div class="textos">
<h3>Altamont Speedway</h3>
<p>27 de Diciembre 2021</p>
</div>
</div>
<div class="card" style="background-image: url('./img/6.jpg')">
<div class="textos">
<h3>Rock In Rio Again</h3>
<p>1 de Enero 2021</p>
</div>
</div>
</div>
<div class="banner" style="background-image: url('./img/banner.jpg')">
<h3>Rock Legends 2023</h3>
<ul>
<li>Guns N' Roses</li>
<li>AC/DC</li>
<li>Motley Crue</li>
<li>The Cult</li>
<li>Poison</li>
<li>Def Leppard</li>
</ul>
<button class="boton">Comprar Boletos</button>
</div>
</div>
</body>
</html>