Comment by Devasta
4 days ago
For me, the mistake is having style attributes in html.
You should be able to write
<div color="red" font-weight="bold"/>
Instead of
<div style="color: red; font-weight: bold;"/>
4 days ago
For me, the mistake is having style attributes in html.
You should be able to write
<div color="red" font-weight="bold"/>
Instead of
<div style="color: red; font-weight: bold;"/>
Guess who wasn't around when HTML3.2 was introduced...
How about to control the color of links, add the color attributes for links in body?
https://www.w3.org/TR/2018/SPSD-html32-20180315/#body
These namespaces do not merge cleanly, for example `content`.
Oh for sure, its way way too late to do it, but I don't think much of any of the modern web stack would be kept if we designed in the 90s with what we know now.
This literally exists. You can use the <font> tag if you really want.