Files
2026-08-10 23:34:53 +02:00

27 lines
698 B
HTML
Executable File

<html>
<head>
<title>HTML Test Page</title>
<style>body {color: white; background: darkslategray;} a {color: deepskyblue;}</style>
<style>tag, tag2, shreddit-comment {background: red;}</style>
</head>
<body>
<h3>Test Page</h3>
<h4>tag + class</h4>
<tag class="class">If this is showing it's not working</tag>
<h4>tag + attribute</h4>
<tag2 attrib="attrib">If this is showing it's not working</tag2>
<h4>shreddit-comment + attribute</h4>
<shreddit-comment author="AutoModerator">If this is showing it's not working</shreddit-comment>
<h4>Rules to use:</h4>
<pre>
github.io##tag.class
github.io##tag2[attrib="attrib"]
github.io##shreddit-comment[author="AutoModerator"]
</pre>
</body>
</html>