-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
89 lines (78 loc) · 1.99 KB
/
Copy pathindex.html
File metadata and controls
89 lines (78 loc) · 1.99 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
<!DOCTYPE html>
<html>
<head>
<title>Test</title>
</head>
<body>
<h1>Bienvenue sur BaldwinRP</h1>
<p>Ceci est une page de test.</p>
</body>
</html>
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>BaldwinRP</title>
<style>
body {
margin: 0;
font-family: 'Segoe UI', sans-serif;
background-color: #0f0f0f;
color: white;
text-align: center;
}
header {
background: linear-gradient(to right, #ff7700, #000, #007bff);
padding: 60px 20px;
}
h1 {
font-size: 3em;
color: white;
margin: 0;
text-shadow: 0 0 10px rgba(255,255,255,0.4);
}
.description {
padding: 40px 20px;
font-size: 1.2em;
max-width: 800px;
margin: auto;
}
.btn-discord {
display: inline-block;
margin-top: 20px;
background-color: #5865F2;
padding: 15px 30px;
border-radius: 8px;
text-decoration: none;
color: white;
font-weight: bold;
font-size: 1.1em;
transition: background 0.3s;
}
.btn-discord:hover {
background-color: #4752c4;
}
footer {
padding: 20px;
font-size: 0.9em;
color: #aaa;
}
</style>
</head>
<body>
<header>
<h1>BaldwinRP</h1>
</header>
<div class="description">
Bienvenue sur <strong>BaldwinRP</strong>, un serveur Garry's Mod RP unique, mêlant ambiance urbaine et liberté de rôleplay. Rejoignez une communauté active, bâtissez votre histoire, et faites votre place dans la ville.
<br><br>
🎮 Serveur GMod RP – Disponible 24/7 – Staff réactif – Économie dynamique
<br><br>
<a href="https://discord.gg/tonliendiscord" class="btn-discord" target="_blank">🚀 Rejoindre le Discord</a>
</div>
<footer>
© 2025 BaldwinRP. Tous droits réservés.
</footer>
</body>
</html>