-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
79 lines (75 loc) · 3.69 KB
/
index.html
File metadata and controls
79 lines (75 loc) · 3.69 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- https://www.youtube.com/watch?v=kMT54MPz9oE&list=RDCMUC8butISFwT-Wl7EV0hUK0BQ&start_radio=1&rv=kMT54MPz9oE&t=366 -->
<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>Website</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header class="main-header">
<nav class="nav main-nav">
<ul>
<li> <a href="index.html">HOME</a></li>
<li><a href="store.html">STORE</a></li>
<!-- <li><a href="about.html">ABOUT</a></li> -->
</ul>
</nav>
<h1 class="band-name band-name-large">LA CAMPAÑA DE DOV</h1>
<div class="container">
<button class="btn btn-header" type="button">Resto de Jugadores</button>
</div>
<button class="btn btn-header btn-play" type="button">►</button>
</header>
<section class="content-section container">
<h2 class="section-header">Jugadores</h2>
<div>
<div class="tour-row">
<span class="tour-item tour-date">Date</span>
<span class="tour-item tour-city">City</span>
<span class="tour-item tour-arena">Facunchos</span>
<button class="btn tour-item tour-btn btn-primary" type="button">BUY TICKETS</button>
</div>
<div class="tour-row">
<span class="tour-item tour-date">Fighter</span>
<span class="tour-item tour-city">Bocadito</span>
<span class="tour-item tour-arena">nombreJugador</span>
<button class="btn tour-item tour-btn btn-primary" type="button">BUY TICKETS</button>
</div>
<div class="tour-row">
<span class="tour-item tour-date">Clerigo?</span>
<span class="tour-item tour-city">UG</span>
<span class="tour-item tour-arena">nombreJugador</span>
<button class="btn tour-item tour-btn btn-primary" type="button">BUY TICKETS</button>
</div>
<div class="tour-row">
<span class="tour-item tour-date">Sorcerer</span>
<span class="tour-item tour-city">Grimjou</span>
<span class="tour-item tour-arena">nombreJugador</span>
<button class="btn tour-item tour-btn btn-primary" type="button">BUY TICKETS</button>
</div>
<div class="tour-row">
<span class="tour-item tour-date">Druida</span>
<span class="tour-item tour-city">???</span>
<span class="tour-item tour-arena">nombreJugador</span>
<button class="btn tour-item tour-btn btn-primary" type="button">BUY TICKETS</button>
</div>
</div>
</section>
<footer class="main-footer">
<div class="container main-footer-container">
<h3 class="band-name">Facunchos</h3>
<ul class="nav footer-nav">
<li><a href="https://www.youtube.com/watch?v=dQw4w9WgXcQ" target="_blank"><img
src="imgs/discord-logo.svg" alt="discord-logo" width="50"></a></li>
<li><a href="https://open.spotify.com/playlist/6OtGBZAR20qQZJ4nqlPHny?si=583dbb0ef4c9462f"
target="_blank"><img src="imgs/Spotify-logo green.png" alt="spotify-logo" width="50"></a></li>
<li><a href="https://www.youtube.com/watch?v=dQw4w9WgXcQ" target="_blank"><img
src="imgs/Whatsapp-logo.png" alt="whatsapp-logo-2020" width="50"></a></li>
</ul>
</div>
</footer>
</body>
</html>