-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
90 lines (69 loc) · 3.46 KB
/
index.html
File metadata and controls
90 lines (69 loc) · 3.46 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
80
81
82
83
84
85
86
87
88
89
90
<!DOCTYPE html>
<html lang="pt-BR">
<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>Game Mania</title>
<link rel="stylesheet" href="stylo.css">
</head>
<body>
<script src="./index.js"></script>
<header class="cabecalho">
<Section>
<div class="container-grid header-flex">
<img src="./imagens/patrocinadores/Rectangle 28.png">
<h1 class="title" style="height: 100px; width: 400px; font-size: 50px; text-shadow: 2px 2px 5px #eee;">Game Mania</h1>
<label><img src="./imagens/patrocinadores/Rectangle 15.png" alt="lupa"></label>
<input type="text" placeholder="Pesquise aqui" style="width: 400px; height: 50px; object-position: initial;" href="#">
</div>
</Section>
<section>
<div class= "container-grid menu-de-baixo">
<nav class="menu">
<a href="#">Início</a>
<a href="#">Horários</a>
<a href="#">Campeonato</a>
<a href="#">Resultados</a>
<a href="#">Notícias</a>
<a href="login.html">Login</a>
</nav>
</div>
</section>
</header>
<main>
<section class="banner">
<div class="container-grid banner-info-box">
<article class="banner-info">
<h1 class="info-title">Game Mania</h1>
<p class="info-text">O maior site de vendas de eletrônicos</p>
<a href="#" class="info-link">Inscreva-se</a>
</article>
</div>
</section>
<section class="patrocinados">
<div class="container-grid patrocinados-flex">
<a href= "#"> <img src="./imagens/patrocinadores/f1-logo.png" title="link fórmula 1" alt="fórmula 1" ></a>
<a href= "#"><img src="./imagens/patrocinadores/lol-logo.png" alt="jogo lol" title="jogo lol"></a>
<a href= "#"> <img src="./imagens/patrocinadores/cs-logo.png" alt="counter strike" title="counter strike"></a>
<a href= "#"> <img src="./imagens/patrocinadores/valorant.png" alt="valorant" title="valorant"></a>
<a href= "#"> <img src="./imagens/patrocinadores/fifa.png" alt="fifa" title="fifa"></a>
</div>
</section>
<section class="produtos">
<div class="container-grid produtos-flex">
<a href= "#"> <img src="./imagens/produto01.png" title="link produtos" alt="produtos01" style="height: 350px; width: 200px;"> </a>
<a href= "#"> <img src="./imagens/Group 15produto04.png" alt="produto02" title="produto02" style="height: 350px; width: 200px;" href="#"> </a>
<a href= "#"> <img src="./imagens/Group 14produto02.png" alt="produtos03" title="produtos03" style="height: 350px; width: 200px;" href="#"> </a>
<a href= "#"> <img src="./imagens/produto13.png" alt="produtos03" title="produtos03" style="height: 350px; width: 200px;" href="#"> </a>
</div>
</section>
<section class="final">
<div class="container-grid final-flex">
<img src="./final.png" title="link final" alt="final" style="width:100% ;">
</div>
</section>
</main>
<footer>Todos os direitos reservados</footer>
</body>
</html>