html
html
1
2
3
4
5
6
7
8
9
10
11
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body bgcolor="#333">
<center>
<div id="c">I like<span id="y">CSS</span></div>
<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
body {
margin:0;
}
#c{
margin-top:100px;
width:250px;
font-size:60px;
font-weight:bold;
font-family:times new roman;
background-color:#0af;
color:#555;
padding-top:45px;
padding-bottom:45px;
text-align:center;
text-shadow: 0px 1px 4px white, 0px 2px 10px yellow, 0px 10px 20px #ff8000, 0px 18px 40px red;
}
#y{
text-shadow:0 0 0;
}
Enter to Rename, Shift+Enter to Preview
js
js
1
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run