-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheventos.html
65 lines (57 loc) · 3.6 KB
/
eventos.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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width">
<title>The Classic - Eventos</title>
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/eventos.css">
</head>
<body>
<header class="cabecalho">
<div class="cabecalho-conteudo">
<h1 class="cabecalho-titulo"><img src="imagens/logo.png" alt="Logo com um carro clássico com título The Classic" class="logo"></h1>
<nav class="cabecalho-menu">
<ul class="cabecalho-lista">
<li class="cabecalho-item"><a href="carros.html" class="cabecalho-link">carros</a></li>
<li class="cabecalho-item"><a href="noticias.html" class="cabecalho-link">notícias</a></li>
<li class="cabecalho-item"><a href="index.html" class="cabecalho-link">principal</a></li>
<li class="cabecalho-item"><a href="curriculo.html" class="cabecalho-link">currículo</a></li>
<li class="cabecalho-item"><a href="contato.html" class="cabecalho-link">contato</a></li>
<li class="cabecalho-item"><a href="sobre.html" class="cabecalho-link">sobre</a></li>
</ul>
</nav>
</div>
</header>
<main class="eventos-principal">
<h2 class="eventos-titulo">Venha Participar dos Eventos</h2>
<img src="imagens/eventos-imagem.jpg" alt="" class="eventos-imagem">
<p class="eventos-texto">Como mencionado na página principal. Nós possuímos eventos de carros clássicos. O evento se consiste em trazer vários carros, sejam importados ou não, para fazermos um campeonato de qual carro é o mais atrativo/bonito, cujo o vencedor é dado através de votações dos jurados e dos próprios concorrentes.</p>
<div class="eventos-video">
<iframe width="60%" height="400px" src="https://www.youtube.com/embed/pdGAdISwKZk" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
</main>
<footer class="rodape">
<div class="rodape-conteudo">
<div class="rodape-desenvolvedor">
<p>💻 LucasDevRJ</p>
<a href="https://github.com/LucasDevRJ">
<img src="imagens/github.png" alt="" class="github">
</a>
</div>
<img src="imagens/logo.png" alt="Logo com um carro clássico com título The Classic" class="logo-rodape">
<nav class="rodape-menu">
<ul class="rodape-lista">
<li class="rodape-item"><a href="carros.html" class="rodape-link">carros</a></li>
<li class="rodape-item"><a href="noticias.html" class="rodape-link">notícias</a></li>
<li class="rodape-item"><a href="index.html" class="rodape-link">principal</a></li>
<li class="rodape-item"><a href="curriculo.html" class="rodape-link">currículo</a></li>
<li class="rodape-item"><a href="contato.html" class="rodape-link">contato</a></li>
<li class="rodape-item"><a href="sobre.html" class="rodape-link">sobre</a></li>
</ul>
</nav>
</div>
</footer>
</body>
</html>