S

Text

public
scarlet Sep 09, 2023 Never 79
Clone
1
<!DOCTYPE html>
2
<html lang="en">
3
<head>
4
<meta charset="UTF-8">
5
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
6
<title>Welcome to Scarlet V1</title>
7
<style>
8
* {
9
margin: 0;
10
padding: 0;
11
touch-action: manipulation;
12
outline: none;
13
}
14
15
body {
16
padding: 30px 25px 30px 30px;
17
background: #ffffff;
18
color: #000;
19
font-family: "Helvetica Neue Thin", sans-serif;
20
font-weight: 700;
21
letter-spacing: 0.025em;
22
}
23
24
h1 {
25
font-size: 40px;
26
font-weight: 800;
27
line-height: 40px;
28
margin-top: 10px;
29
}
30
31
h2 {
32
margin-top: 15px;
33
font-size: 30px;
34
font-weight: 700;
35
background-image: linear-gradient(90deg, #FFA500, rgba(128, 0, 128, 0.5), #800080);
36
-webkit-background-clip: text;
37
-webkit-text-fill-color: transparent;
38
}
39
40
h3 {
41
margin-top: 15px;
42
margin-bottom: 30px;
43
}
44
45
.vmc {
46
color: #e5bd00;
47
}
48
49
.done {
50
font-weight: bold;
51
color: #0A84FF;
52
}
53
54
.lastp {
55
margin-top: 40px;
56
}
57
58
h1,
59
h2,
60
h3,
61
button {
62
-webkit-touch-callout: none;
63
-webkit-user-select: none;
64
user-select: none;
65
}
66
67
@media (prefers-color-scheme: dark) {
68
body {
69
background-color: #000;
70
color: #f1f1f1;
71
}
72
}
73
</style>
74
</head>
75
<body>
76
<h1 style="background-image: linear-gradient(90deg, #FF0000, #FFA500, #FFFF00, #008000, #0000FF, #4B0082, #8B00FF);
77
-webkit-background-clip: text;
78
-webkit-text-fill-color: transparent;">Welcome to Scarlet V1 update : 1.0.0</h1> <br>
79
<h2><span class="vmc"></span></h2>
80
<br>
81
<p>The best menu</p>
82
<br>
83
<p>This is the first release of Scarlet V1!</p>
84
<br>
85
<p>Credits: Scarlet_roblox#9483</p>
86
<br>
87
<p class="lastp">When finished, tap <span class="done">Done</span>.</p>
88
</body>
89
</html>