html
html
1
2
3
4
5
6
7
8
9
10
11
<!-- Created by Calviղ-->
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<div class="tt">Text Shadow</div>
</body>
</html>
Enter to Rename, Shift+Enter to Preview
css
css
1
2
3
4
5
6
7
8
9
10
11
12
13
/* Created by Calviղ */
body {
}
.tt {
font-size: 3em;
/*color: transparent;
-webkit-text-stroke: 1px orange;*/
text-shadow: 0 0 10px darkblue;
}
Enter to Rename, Shift+Enter to Preview
js
js
1
2
3
// Created by Calviղ
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run