Is there a way in CSS / HTML to create new elements, without using Javascript? So that I could import a CSS or HTML file, and load a new element, in order to be able to replace something like this:
<html>
<body>
<div id="titlebar" style="background-color:#ff0000;">
<label style="color:#00ff00;">This is a title</label>
</div>
</body>
</html>
with something like this or a similar shortening (e.g. class="titlebar"):
<html>
<body>
<titlebar>
This is a title
</titlebar>
</body>
</html>
If you do not know, what I mean, please ask down there.