Created
November 22, 2024 14:56
-
-
Save wseaton/3c9bdb35cfad4ef0ae5572dda2b347e8 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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