-
Notifications
You must be signed in to change notification settings - Fork 0
/
legend.html
80 lines (74 loc) · 2.65 KB
/
legend.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
<!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" />
<!-- google font -->
<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@300;500&display=swap"
rel="stylesheet"
/>
<!-- main css -->
<link rel="stylesheet" href="./css/main.css" />
<title>Legend</title>
</head>
<body>
<!-- overlay -->
<section id="overlay"></section>
<!-- header -->
<header>
<div class="container">
<nav class="navbar">
<!-- logo -->
<div class="navbar__logo">
<img src="./img/barca_logo.png" alt="website logo" />
</div>
<!-- links -->
<ul class="navbar__links">
<li class="navbar__link"><a href="#works">Equipo Legendario</a></li>
<li class="navbar__link"><a href="">Primer Equipo</a></li>
<li class="navbar__link"><a href="./xavi.html">Gerente</a></li>
<li class="navbar__link"><a href="./about.html">Sobre</a></li>
</ul>
<!-- menu button -->
<div class="navbar__icons">
<div class="navbar__icon"></div>
</div>
</nav>
</div>
</header>
<!-- banner -->
<section id="banner">
<div class="container">
<!-- img -->
<div class="banner__img">
<img src="./img/barce_banner.png" alt="illustration of women"/>
</div>
<!-- heading -->
<div class="banner__heading">
<h1>Y aquí están las leyendas del FC Barcelona</h1>
<p>
</p>
<a href="https://www.goal.com/vn/list/doi-hinh-xuat-sac-nhat-moi-thoi-dai-cua-barcelona-chon-ra-huyen-thoai-giua-rung-sieu-sao/blt7cd5a4f156e77aeb#cs46123e3d8ea139aa"><button class="banner__btn">Ver Más</button></a>
<a href="./index.html"><button class="banner__btn">Return</button></a>
<div class="banner__socials">
<a href="#"><i class="fab fa-dribbble"></i></a>
<a href="#"><i class="fab fa-behance"></i></a>
<a href="#"><i class="fab fa-linkedin-in"></i></a>
</div>
</div>
</div>
</section>
<!-- Legend -->
<!-- fontawesome -->
<script
src="https://kit.fontawesome.com/28c0af3030.js"
crossorigin="anonymous"
></script>
<!-- main js -->
<script src="./js/main.js"></script>
</body>
</html>