<!DOCTYPE html>
<html>
<head>
<style>
.dash {
border: 5px dashed #ccc;
padding: 100px;
display: block;
}
</style>
</head>
<body>
<div id="hello" class="dash">HELLO WORLD!</div>
<script>
if (document.getElementById('hello')) {
document.getElementById('hello').innerHTML = 'Hello World - this was inserted using JavaScript';
}
</script>
</body>
</html>