playground:playground
This is an old revision of the document!
<div>Here is some text with <span style="color: #90ee90;">colored text</span>.</div> <div>This is another line with a line break.<br/>And a new line.</div>
<button onclick=“toggleText()”>Show Hidden Text</button>
<script>
function toggleText() {
var hiddenText = document.getElementById("hiddenText");
if (hiddenText.style.display === "none") {
hiddenText.style.display = "block";
} else {
hiddenText.style.display = "none";
}
}
</script>
playground/playground.1700949425.txt.gz · Last modified: 2023/11/25 21:57 by kisu_odd
