html
html
1
2
3
4
5
6
7
8
9
10
<!DOCTYPE html>
<html>
<head>
<title>Custom tags</title>
</head>
<body>
<h1><rd>Custom tags</rd> are convenient for <gr>changing</gr> colors in your text</h1>
<p><bl>L</bl><gr>o</gr><rd>r</rd>em ipsum <rd>dolor</rd> sit amet, consectetur adipiscing elit. Integer pharetra ex finibus dolor vestibulum iaculis. <gr>Mauris</gr> et tempus orci. Nulla facilisi. <bl>Vestibulum quis facilisis mauris, nec dignissim massa.</bl></p>
</body>
</html>
Enter to Rename, Shift+Enter to Preview
css
css
1
2
3
4
5
6
7
8
9
rd{
color: red;
}
gr{
color: green;
}
bl{
color: blue;
}
Enter to Rename, Shift+Enter to Preview
js
js
1
2
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run