I've the following document and I want to add to it script under the title after the page load,how should I do that ?
This is my simple page
<html>
<head>
<title>Simple demo</title>
</head>
<body>
<h1>Demo</h1>
<p>
Very simple UI – just text and a link:
<a id="demoLink" href="#">Click me!</a>
</p>
</body>
</html>
The script should be very simple
<script>console.log(test) </script>
is it possible at all ? if not how should I do that via console?