<!DOCTYPE html>
<meta charset="utf-8">
<body id="body">
This is a dynamic page. It will always have different content if refreshed.
<div id="dynamic"></div>
</body>
</html>
<script>
document.getElementById('dynamic').innerHTML = Math.random();
</script>