I have a "very simple" problem. My code is:
<!DOCTYPE html>
<html>
<head>
</head>
<body>
Hello World!
<script>
alert('Alert');
</script>
</body>
</html>
First it executes alert(), only then makes HTML the "Hello World!" string to visible. How can I make to appear the Hello World first, and only then execute alert('Alert')? Thanks forward!