Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 318bf51

Browse files
authoredFeb 20, 2025··
Create Arena play
Arena Play é o aplicativo ideal para os apaixonados por futebol! Com ele, você pode assistir a jogos ao vivo, replays e conteúdos exclusivos diretamente no seu dispositivo. Compatível com Android e TV Box, o Arena Play oferece uma experiência imersiva com transmissões de alta qualidade. Baixe agora e não perca nenhum lance do seu time favorito!
1 parent 8338363 commit 318bf51

File tree

1 file changed

+58
-0
lines changed

1 file changed

+58
-0
lines changed
 

‎Arena play

+58
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
<!DOCTYPE html><html lang="pt-BR">
2+
<head>
3+
<meta charset="UTF-8">
4+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
5+
<title>Arena Play - Futebol Ao Vivo</title>
6+
<style>
7+
body {
8+
font-family: Arial, sans-serif;
9+
margin: 0;
10+
padding: 0;
11+
background-color: #121212;
12+
text-align: center;
13+
color: white;
14+
}
15+
header {
16+
background-color: #d32f2f;
17+
padding: 20px;
18+
font-size: 24px;
19+
}
20+
.container {
21+
max-width: 800px;
22+
margin: 20px auto;
23+
padding: 20px;
24+
background: #1e1e1e;
25+
border-radius: 8px;
26+
box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
27+
}
28+
.btn-download {
29+
display: inline-block;
30+
padding: 10px 20px;
31+
background-color: #ff9800;
32+
color: white;
33+
text-decoration: none;
34+
border-radius: 5px;
35+
margin-top: 20px;
36+
font-size: 18px;
37+
}
38+
footer {
39+
margin-top: 20px;
40+
padding: 10px;
41+
background: #333;
42+
}
43+
</style>
44+
</head>
45+
<body>
46+
<header>
47+
Arena Play - Futebol Ao Vivo
48+
</header>
49+
<div class="container">
50+
<h2>Assista aos Jogos Ao Vivo!</h2>
51+
<p>Baixe agora o nosso aplicativo e acompanhe todas as transmissões ao vivo, replays e conteúdos exclusivos.</p>
52+
<a href="#" class="btn-download">Baixar APK</a>
53+
</div>
54+
<footer>
55+
&copy; 2025 Arena Play - Todos os direitos reservados.
56+
</footer>
57+
</body>
58+
</html>

0 commit comments

Comments
 (0)
Please sign in to comment.