-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
62 lines (54 loc) · 1.99 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
<!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">
<title>Copa América 2021</title>
<!-- Styles -->
<link rel="stylesheet" href="Normalize.css">
<link rel="stylesheet" href="styles.css">
<!-- Font Awesome -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.3/css/all.css"
integrity="sha384-SZXxX4whJ79/gErwcOYf+zWLeJdY/qpuqC4cAa9rOGUstPomtqpuNWT9wdPEn2fk" crossorigin="anonymous">
<!-- Fonts -->
<link rel="preconnect" href="https://fonts.gstatic.com">
<link
href="https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@600&family=Open+Sans&family=Squada+One&display=swap"
rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Blinker:wght@300&family=Fredoka+One&display=swap" rel="stylesheet">
</head>
<body>
<header id="header">
<nav class="navbar">
<ul id="navbar-ul">
<li class="navbar-item">
<a href="#">Copa América</a>
</li>
<li class="navbar-item">
<a href="https://javiervaleriano.github.io/javier-menu-euro2020/">Eurocopa</a>
</li>
</ul>
</nav>
</header>
<main class="menu">
<!-- Title -->
<header id="title">
<h1>Copa América 2021</h1>
<div class="underline"></div>
</header>
<!-- Filter buttons -->
<div class="filter-buttons">
<select name="filtros" class="filter-select">
</select>
<i class="fas fa-chevron-circle-down select-icon"></i>
</div>
<!-- End of filter buttons -->
<!-- Block of items -->
<div id="block-items">
</div>
</main>
<!-- JS -->
<script src="app.js"></script>
</body>
</html>