-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
85 lines (76 loc) · 3.5 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
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./recursos/css/style.css">
<link rel="shortcut icon" href="./recursos/img/favicon16.png" type="image/x-icon">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Rubik+Dirt&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Tourney:ital@0;1&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap" rel="stylesheet">
<title>MTG Draft</title>
</head>
<body>
<br>
<header class="container primary-header">
<div class="logo">
<img src="./recursos/img/logo-mtg.png" alt="Logomarca Magic The Gathering">
<span>DRAFT</span>
</div>
<nav class="nav primary-nav group">
<a href="index.html">Início</a>
<a href="evento.html">Evento</a>
<a href="local.html">Local</a>
<a href="inscricao.html">Inscrição</a>
</nav>
</header>
<section class="container content">
<h1 class="disclaimer">Campeonato de Booster Draft</h1>
<h1 class="disclaimer">Magic: The Gathering</h1>
<img id="booster-box" src="./recursos/img/booster-box.png" alt="Caixa de Booster da cole'c~ao Domin'aria Unida">
<section class="intro">
<h2>Dia 29 de Outubro de 2022<br>No <ins>Pátio San Marino</ins> em Lins/SP</h2>
<p><strong>A partir das 08:00h</strong></p>
<p>Venha participar de um dia de muita diversão jogando <strong>Magic: The Gathering</strong>.</p>
<a class="btn btn-alt" href="inscricao.html">Inscreva-se</a>
</section>
<section class="row">
<div class="grid">
<section class="teaser col-1-2">
<h2>O Evento</h2>
<a href="evento.html">
<img src="recursos/img/evento.jpg"
alt="Evento">
<h3>Jogue um campeonato de MTG Draft</h3>
</a>
<p>Ao se inscrever, receba 3 boosters lacrados. Lembre-se de trazer os seus terrenos básicos de casa.
</p>
</section><!--
--><section class="teaser col-1-2">
<h2>O Local</h2>
<a href="local.html">
<img src="recursos/img/local.jpg"
alt="Agenda">
<h3>Pátio San Marino</h3>
</a>
<p>Localizado próximo ao hotel Cristal Palace, o Pátio San Marino está em uma excelente localização, com fácil acesso ao centro de Lins.</p>
</section>
</div>
</section>
</section>
<footer class="container primary-footer">
<nav class="nav">
<a href="index.html">Início</a>
<a href="evento.html">Evento</a>
<a href="local.html">Local</a>
<a href="inscricao.html">Inscrição</a>
</nav>
<div class="copyright">
<img src="./recursos/img/wotc-logo.png" alt="Logomarca Wizards of the Coast" class="wizards-logo">
<small>©</small>
</div>
</footer>
<br>
</body>
</html>