-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUso-grid.html
More file actions
46 lines (41 loc) · 1.12 KB
/
Uso-grid.html
File metadata and controls
46 lines (41 loc) · 1.12 KB
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">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/FlexboxyGrid.css">
<title>Uso de Flexbox y Grid</title>
</head>
<body>
<div class="container">
<div class="concierto">
<div class="card">
<div class="imagen">
<img src="https://cdn-icons-png.freepik.com/512/12638/12638715.png" alt="">
</div>
<div class="textos">
<h3>Rock</h3>
<p>13 de octubre 2025</p>
</div>
</div>
<div class="card">
<div class="imagen">
<img src="https://cdn-icons-png.freepik.com/512/12638/12638715.png" alt="">
</div>
<div class="textos">
<h3>Rock</h3>
<p>13 de octubre 2025</p>
</div>
</div>
<div class="card">
<div class="imagen">
<img src="https://cdn-icons-png.freepik.com/512/12638/12638715.png" alt="">
</div>
<div class="textos">
<h3>Rock</h3>
<p>13 de octubre 2025</p>
</div>
</div>
</div>
</body>
</html>