<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>JavaScript Example</title>
</head>
<body>
<!-- Placeholder paragraph with id "output" -->
<p id="output"></p>
<script>
// JavaScript code to manipulate the "output" element
var outputElement = document.getElementById("output");
outputElement.innerHTML = "Updating content with JavaScript!";
</script>
</body>
</html>
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.