-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
104 lines (104 loc) · 5.3 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
<!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" />
<script src="scripts/menu.js" defer></script>
<script src="scripts/artists.js" type="module"></script>
<link rel="stylesheet" href="index.css" />
<link rel="stylesheet" href="pages/styles/index.css">
<link rel="icon" type="image/x-icon" href="images/icons/favicon.png">
<meta name="description" content="The un-official Tecate Supremo 2023 website.">
<title>Tecate Supremo 2023</title>
</head>
<body>
<header>
<ul id="session">
<li href="#"><a class="sess-link"><i><img class="face" src="./images/icons/facebook-icon.png" alt="facebook icon"></i></a></li>
<li href="#"><a class="sess-link"><i><img class="twit" src="./images/icons/twitter-icon.png" alt="twitter icon"></i></a></li>
<li href="#"><a class="sess-link">English</a></li>
<li href="#"><a class="sess-link">MyPage</a></li>
<li href="#"><a class="sess-link">Logout</a></li>
</ul>
<label class="menu-btn">
<input id="checkbox" type="checkbox">
<span class="burguer"></span>
<nav>
<a href="#"><img class="nav-logo" src="./images/content/ts-logo.png" alt="Tecate Supremo logo"></a>
<ul>
<li class="nav-item"><a href="./pages/about.html" class="nav-link">About</a></li>
<li class="nav-item"><a href="#" class="nav-link">Program</a></li>
<li class="nav-item"><a href="#" class="nav-link">Join</a></li>
<li class="nav-item"><a href="pages/about.html#sponsors" class="nav-link">Sponsors</a></li>
<li class="nav-item"><a href="pages/about.html#history" class="nav-link">History</a></li>
<li class="nav-item"><a class="nav-link campaign" href="#">TS Campaign</a></li>
</ul>
</nav>
</label>
<section id="headline">
<p class="headline-p">"Helo! Music Lovers!"</p>
<h1>THE INDOMITABLE FESTIVAL TECATE SUPREMO 2023</h1>
<ul class="line-up">
<small>Line-up in alphabetical order by block</small>
<li class="inter">INTERPOL</li>
<li class="l2">DANNY OCEAN</li><li class="l2">JOSÉ MADERO</li>
<li class="l3">NATANAEL CANO</li><li class="l3">PLASTILINA MOSH</li>
<li class="l4">POOLSIDE</li><li class="l4">SANTA FE KLAN</li>
<li class="l5">CALONCHO</li><li class="l5">ESTEMAN</li><li class="l5">LITTLE JESUS</li>
<li class="l6">REYNO</li><li class="l6">SABINO</li>
<li class="l7">BLNKO</li><li class="l7">BRUSES</li><li class="don l7">DONOVAN MORALES</li>
<li class="l8">LOS ESTRAMBÓTICOS</li><li class="l8">MICHELLE MACIEL</li>
</ul>
<time datetime="2023-05-20">2023.05.20(SAT)</time>
<address>@ Parque El Chamizal, cd Juarez</address>
</section>
</header>
<main>
<section id="information">
<div class="blueBg">
<h1 class="sectionTitle info">Information</h1>
<a href="#" class="tickets info-link">
<h2>Tickets</h2>
<p>Here are the different types of tickets and their benefits. Take advantage of the prices in the different phases.</p>
</a>
<a href="#" class="sched info-link">
<h2>Schedule</h2>
<p>The festival will be held on May 20 of 2023, starting at 12:00. See inside for details.</p>
</a>
<a href="#" class="serv info-link">
<h2>Services</h2>
<p>There will be a variety of services available inside the festival, some are included with your ticket, and some are extra.</p>
</a>
<a href="#" class="secur info-link">
<h2>Security</h2>
<p>Which items are allowed, and which items are forbidden in the festival?</p>
</a>
<a href="#" class="forum info-link">
<h2>Forum</h2>
<p>Chat with people interested in this event</p>
</a>
<a href="#" class="join">Join Tecate Supremo 2023</a>
<a href="#" class="program">SEE THE HOLE PROGRAM</a>
</div>
</section>
<section id="artists"></section>
<section id="sponsors">
<h1 class="sectionTitle">Sponsors</h1>
<i class="sponsor"><img class="w1" src="./images/content/donBoleton-logo.png" alt="Don Boletón logo."></i>
<i class="sponsor"><img class="w2" src="./images/content/tecate-logo.png" alt="Tecate logo."></i>
<i class="sponsor"><img class="w2" src="./images/content/gnp-logo.png" alt="GNP logo"></i>
<i class="sponsor"><img class="w3" src="./images/content/banamex-logo.png" alt="Banamex logo"></i>
<i class="sponsor"><img class="w2" src="./images/content/ocesa-logo.png" alt="Ocesa logo"></i>
<i class="sponsor"><img class="w2" src="./images/content/apodaca-logo.png" alt="Apodaca Group logo"></i>
</section>
</main>
<footer>
<i><img class="ts-icon" src="./images/content/ts-logo.png" alt="Tecate Supremo icon"></i>
<div class="foot-text-cont">
<p class="footer-p">Tecate Supremo 2023</p>
<p class="footer-p">Some content taken from <a href="https://tecatesupremo.com/">Tecate Supremo's official site</a></p>
</div>
</footer>
</body>
</html>