Sandbox: Difference between revisions

From Hidden Mickey Wiki

No edit summary
Tag: Reverted
No edit summary
Tag: Reverted
Line 1: Line 1:
<htmltag tagname="script" type="text/javascript">
<htmltag tagname="p" style="color:red; font-weight:bold;">
  // Print to the browser console
Hello World
  console.log("Hello World");
 
  // Also display on the page
  var message = document.createElement('p');
  message.textContent = "Hello World";
  message.style.color = "blue"; // optional styling
  document.body.appendChild(message);
</htmltag>
</htmltag>

Revision as of 10:02, 2 October 2025

The tag name "p" is not supported for <htmltag>.