html
html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="cssgradint.css">
</head>
<body>
<div class="css-3d-text">3D TEXT</div>
<div class="css-2d-text">3D TEXT</div>
<div class="shadow"></div>
<br></br>
</body>
</html>
Enter to Rename, Shift+Enter to Preview
css
css
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
.css-3d-text {
font-size: 70px;
color: #ffc107;
font-family: "Arial Black", Gadget, sans-serif;
text-shadow: 0px 0px 0 rgb(250,188,2),
1px 1px 0 rgb(245,183,0),
2px 2px 0 rgb(240,178,0),
3px 3px 0 rgb(235,173,0),
4px 4px 0 rgb(230,168,0),
5px 5px 0 rgb(225,163,0),
6px 6px 0 rgb(220,158,0),
7px 7px 0 rgb(215,153,0),
8px 8px 0 rgb(210,148,0),
9px 9px 0 rgb(205,143,0),
10px 10px 0 rgb(200,138,0),
11px 11px 10px rgba(0,0,0,0.6),
11px 11px 1px rgba(0,0,0,0.5),
0px 0px 10px rgba(0,0,0,.2);
}
.css-2d-text{
font-size: 70px;
color: #ffc107;
font-family: "Arial Black", Gadget, sans-serif;
text-shadow: 0px 0px 0px rgb(250,183,2),
1px 1px 0px rgb(250,183,2),
2px 2px 0px rgb(247, 180, 0),
3px 3px 0px rgb(240, 179, 0),
Enter to Rename, Shift+Enter to Preview
js
js
1
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run