generated from 4GeeksAcademy/html-hello
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
50 lines (47 loc) · 3.04 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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Instagram Feed hecho por lynda</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<div class="navbar">
<div class="logo">Instagram</div>
</div>
</header>
<main>
<section class="profile">
<div class="profile-picture">
<img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQEV9cKP9V_uC0GHb7PmFfyPWp67eSKQEls3Q&s" alt="Profile">
</div>
<div class="profile-info">
<h1>marduk</h1>
<p>Black metal | Band | Sweden</p>
</div>
</section>
<section class="posts">
<div class="post">
<img src="https://es.concerts-metal.com/images/flyers/202307/1690733658--Marduk---Tour-2023.webp" alt="Post 1">
<div class="post-description">
<p>MARDUK – MEMENTO MORI ASIA TOUR – LIVE IN HONG KONG: Get ready to experience a dark and intense musical journey with Marduk – the legendary Swedish black metal band that has been pushing boundaries and captivating audiences for over three decades. With their razor-sharp riffs, thunderous drums, and haunting vocals, Marduk delivers a powerful and spine-tingling sound that has earned them a massive following worldwide.</p>
</div>
</div>
<div class="post">
<img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTIm5HuFV5Nsrcnu2QTyU6azNCZVF2vpra4cg&s" alt="Post 2">
<div class="post-description">
<p>Los suecos Marduk, uno de los máximos exponentes del black metal de los 90, volverán a nuestro país dentro del "Viktoria Europa Part. 3" para hacer parada en tres salas españolas durante el mes de mayo. Los invitados son Valkyria y el tour llega de la mano de Madness Live! y Massive Music.</p>
</div>
</div>
<div class="post">
<img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTMrR1u2wEyrd3G8PqWXFkh9NXe8101E2fnRg&s" alt="Post 3">
<div class="post-description">
<p>El Festival del Maligno en Bogotá presentó una alineación impresionante de bandas extremas como Behemoth, Marduk, Thy Antichrist y Tenebrarum. El evento fue una celebración intensa del metal oscuro y atrajo a fanáticos apasionados de la escena. Cada banda ofreció actuaciones energéticas y potentes, entregando un espectáculo memorable. Las canciones brutales, los riffs pesados y las letras provocativas resonaron en el público, creando una atmósfera llena de fervor y oscuridad. El Festival del Maligno fue una experiencia única para los amantes del metal extremo en Bogotá, dejando una impresión duradera y dejando claro por qué estas bandas son consideradas referentes en el género.</p>
</div>
</div>
</section>
</main>
</body>
</html>