| ▲ | Devasta 10 hours ago | |
You've always been able to do it, doesn't even need to be HTML, serialise as XHTML and you can include the tags on your own namespace and have separate CSS for them. <!DOCTYPE html> <html
><body> <CustomElement>Hello</CustomElement><!-- Custom element in the XHTML namespace --> <ns1:CustomElement>Hello</ns1:CustomElement> <ns2:CustomElement>Hello</ns2:CustomElement> <style type="text/css">
</style></body> </html> | ||