<html>
<head><meta http-equiv="content-security-policy" content="script-src 'none'">
<title>Назва сторінки</title>
<script>
function myFunction() {
document.getElementById("demo").innerHTML = "Hello JavaScript!";
}
</script>
</head>
<body>
<h1>Моя веб-сторінка</h1>
<p id="demo">Параграф</p>
<button type="button" onclick="myFunction()">Спробуй це</button>
</body>
</html>