html
html
1
2
3
4
5
6
7
8
9
10
11
12
13
<!-- Created by #00FF00-->
<html>
<head> </head>
<body bgcolor="blue">
<h1>it nice</h1>
<svg width="500" height="500">
<path d="M100 100 L105 95 L150 100 L155 145 L150 150 L100 150 Z"
stroke="#FFFFFF" fill="Blue"></path>
<path d="M105 95 L155 95 L155 145 L105 145 Z"
stroke="#FFFFFF" fill="Blue"></path>
</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
/* Created by #00FF00 */
path {
stroke-dasharray: 2000;
-webkit-animation: path 200s linear alternate infinite;
}
@-webkit-keyframes path {
from {
stroke-dashoffset: 2000;
}
to {
stroke-dashoffset: 0;
}
}
Enter to Rename, Shift+Enter to Preview
js
js
1
2
3
// Created by #00FF00
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run