forked from sayofthelor/sz-games.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
StartFNF.html
71 lines (57 loc) · 1.53 KB
/
StartFNF.html
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
<!DOCTYPE html>
<html>
<head>
<link rel="icon" href="">
<title></title>
<meta charset="UTF-8">
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
body {
overflow-y: hidden;
background-color: #363636;
margin: 0;
font-family: Arial, Helvetica, sans-serif;
color: white;
}
.btn-group button {
background-color: black; /* Green background */
color: white; /* White text */
padding: 10px 24px; /* Some padding */
cursor: pointer; /* Pointer/hand icon */
float: left; /* Float the buttons side by side */
}
/* Clear floats (clearfix hack) */
.btn-group:after {
content: "";
clear: both;
display: table;
}
.btn-group button:not(:last-child) {
border-right: none; /* Prevent double borders */
}
/* Add a background color on hover */
.btn-group button:hover {
background-color: grey;
}
/* Header/Logo Title */
.header {
padding: 60px;
text-align: center;
background: linear-gradient(to bottom right, #9a9a9a, rgb(39, 39, 39));
color: white;
width: auto;
font-size: 30px;
font-family: Arial, Helvetica, sans-serif;
border-radius: 15px;
}
</style>
</head>
<body >
<h1 style="text-align: center;">Welcome</h1>
<h1 style="text-align: center;">To Start Click The Icon Below That Is Located In The Options Bar:</h1>
<span class="material-icons buttonForMenu" style="font-size: 50px; transform: translate(-50%, -0%); left: 50%; position: relative;">
sports_esports
</span>
</body>
</html>