-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathemdev.html
More file actions
74 lines (71 loc) · 2.01 KB
/
Copy pathemdev.html
File metadata and controls
74 lines (71 loc) · 2.01 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
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Página em Desenvolvimento - Ajuda Mush</title>
<link rel="stylesheet" href="style.css" />
<script src="script.js"></script>
<link rel="icon" href="favicon.png" type="image/png" />
<style>
main {
text-align: center;
padding: 80px 20px;
}
main h2 {
font-size: 2.5em;
color: #4CAF50;
margin-bottom: 20px;
}
main p {
font-size: 1.2em;
color: #ccc;
margin-bottom: 40px;
}
.back-link {
color: #4CAF50;
font-weight: bold;
text-decoration: none;
border: 2px solid #4CAF50;
padding: 10px 20px;
border-radius: 5px;
transition: background-color 0.3s ease;
}
.back-link:hover {
background-color: #4CAF50;
color: #111;
}
</style>
</head>
<body>
<header>
<h1>Em Desenvolvimento</h1>
<div class="header-top">
<nav>
<a href="index.html">Início</a>
<a href="hg.html">HG</a>
<a href="bedwars.html">BedWars</a>
<a href="skywars.html">SkyWars</a>
<a href="duel.html">Duel</a>
<a href="ctf.html">CTF</a>
<a href="equipe.html">Equipe</a>
<a href="status.html">Status</a>
<a href="https://discord.gg/pWNqdAJp" target="_blank">Discord</a>
</nav>
<form onsubmit="buscarJogador(); return false;" class="search-bar">
<input type="text" id="nickInput" placeholder="Procurar jogador..." />
<button type="submit"><i class="fas fa-search"></i></button>
</form>
</div>
</header>
<main>
<h2>Ops!</h2>
<p>Esta página ainda está em desenvolvimento.<br>Volte em breve para novidades!</p>
<a class="back-link" href="index.html">Voltar para a página inicial</a>
</main>
<footer>
<p>© 2025 Ajuda Mush. Todos os direitos reservados.</p>
</footer>
<script src="script.js"></script>
</body>
</html>