-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
86 lines (86 loc) · 3.41 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, user-scalable=no">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link href="https://fonts.googleapis.com/css?family=Exo+2" rel="stylesheet">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.3.1/css/all.css" integrity="sha384-mzrmE5qonljUremFsqc01SB46JvROS7bZs3IO2EmfFsd15uHvIt+Y8vEf7N7fWAU" crossorigin="anonymous">
<link rel="stylesheet" href="./css/style.css">
<title>Daft Punk</title>
</head>
<body>
<header>
<h1 class="logo"><img src="./img/logo.png" alt=""></h1>
</header>
<main>
<hr>
<section>
<h2 class="section-title">Members</h2>
<ul class="members-list">
<li class="card">
<div class="member-photo"><img src="img/guy-manuel.png" alt=""></div>
<h3 class="title">Guy-Manuel de Homem-Christo</h3>
<p class="description">
Guy-Manuel de Homem-Christo was born in the Paris, France suburb
of Neuilly-sur-Seine. He is of Portuguese descent: his
great-grandfather was the writer and fascism advocate Homem Cristo
Filho, whose father was the military figure Francisco Manuel Homem
Cristo.
</p>
</li>
<li class="card">
<div class="member-photo"><img src="img/thomas-bangalters.jpeg" alt=""></div>
<h3 class="title">Thomas Bangalter</h3>
<p class="description">
Thomas Bangalter was born in Paris, France. He began playing the
piano at the age of six. Bangalter stated in a video interview
that his parents were strict in keeping up his practice, for which
he later thanked them.
</p>
</li>
</ul>
</section>
<hr>
<section>
<h2 class="section-title">Albums</h2>
<ul class="albums-list">
<li class="album-item">
<a class="album-link" href="https://pt.wikipedia.org/wiki/Random_Access_Memories">
<img class="album-img" src="./img/ram-capa.jpg" alt="capa do álbum random access memories">
<h3>2013</h3>
</a>
</li>
<li class="album-item">
<a class="album-link" href="https://pt.wikipedia.org/wiki/Human_After_All">
<img class="album-img" src="./img/haa-capa.jpg" alt="capa do álbum human after all">
<h3>2005</h3>
</a>
</li>
<li class="album-item">
<a class="album-link" href="https://pt.wikipedia.org/wiki/Discovery_(%C3%A1lbum_de_Daft_Punk)">
<img class="album-img" src="./img/discovery-capa.jpg" alt="capa do álbum discovery">
<h3>2001</h3>
</a>
</li>
<li class="album-item">
<a class="album-link" href="https://pt.wikipedia.org/wiki/Homework">
<img class="album-img" src="./img/homework-capa.jpg" alt="capa do álbum homework">
<h3>1997</h3>
</a>
</li>
</ul>
</section>
<hr>
</main>
<footer>
<h2 class="section-title">Contact</h2>
<ul class="contact-list">
<li><a href="#" class="contact-link fab fa-facebook-square"></a></li>
<li><a href="#" class="contact-link fab fa-twitter-square"></a></li>
<li><a href="#" class="contact-link fab fa-instagram"></a></li>
<li><a href="#" class="contact-link fab fa-github-square"></a></li>
</ul>
</footer>
</body>
</html>