Create simple web page like this one:
<h1>Heading</h1>
<p>Simple text. <strong>Bold</strong> text.</p>
and open it in any mainstream web browser. The rendering will be the same: the heading will be large and bold, the text in strong
tag will be just bold.
Are these default CSS-rules (h1 { font-size: large; font-weight: bold; } strong { font-weight: bold; }
) a part of HTML standard?
(Yes, I know, technically these CSS-rules comes from stylesheet which is built in the browser, but this information doesn't directly answer my question).