-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
68 lines (60 loc) · 1.49 KB
/
index.html
File metadata and controls
68 lines (60 loc) · 1.49 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
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ChoiceHub</title>
<style>
body {
font-family: 'Segoe UI', sans-serif;
background-color: black;
margin: 0;
height: 1000px;
position: relative;
}
.hub-container {
position: absolute;
top: 20px;
left: 30px;
width: 600px;
color: white;
}
h1 {
font-size: 50px;
margin: 0;
}
.button-wrapper {
display: flex;
flex-direction: column; /* vertical */
gap: 30px; /* espac entre les boutons */
margin-top: 100px; /* espace entre le button et le titre */
}
.hub-button {
background-color: DarkOrange; /* Comme ph non ? */
color: black;
padding: 10px 20px;
border: none;
border-radius: 10px;
cursor: pointer;
font-size: 24px;
text-decoration: none;
display: inline-block;
text-align: center;
}
.hub-button:hover {
color: white;
}
</style>
</head>
<body>
<div class="hub-container">
<h1>
<span style="color: white;">Tool</span><span style="color: darkorange;">Hub</span>
</h1>
<div class="button-wrapper">
<a class="hub-button" href="url-generator-hub.html" target="_blank">URL Generator</a>
<a class="hub-button" href="tournament-creator.html" target="_blank">tournament creator</a>
</div>
</div>
</body>
</html>