mirror of
https://github.com/rn10950/RetroZilla.git
synced 2024-11-09 09:20:15 +01:00
12 lines
289 B
HTML
12 lines
289 B
HTML
|
<html>
|
||
|
<head>
|
||
|
<script>
|
||
|
function change()
|
||
|
{
|
||
|
document.getElementById("span").style.fontWeight = "bold";
|
||
|
}
|
||
|
</script>
|
||
|
<body onload="change();">
|
||
|
<span id="span">This is my happy span. <span style="display: block;">It's got an inline block.</span> It all should be bold.</span>
|
||
|
</body>
|
||
|
</html>
|