Skip to content

Instantly share code, notes, and snippets.

@wseaton
Created November 22, 2024 14:56
Show Gist options
  • Save wseaton/3c9bdb35cfad4ef0ae5572dda2b347e8 to your computer and use it in GitHub Desktop.
Save wseaton/3c9bdb35cfad4ef0ae5572dda2b347e8 to your computer and use it in GitHub Desktop.
const message = document.createElement("div");
message.style.padding = "20px";
message.style.backgroundColor = "#d4edda";
message.style.color = "#155724";
message.style.border = "1px solid #c3e6cb";
message.style.borderRadius = "5px";
message.style.margin = "10px 0";
message.style.fontFamily = "Arial, sans-serif";
message.style.fontSize = "14px";
message.innerText = "Hello, World! This is content loaded from the Gist.";
document.getElementById("gistContent").appendChild(message);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment