en.javascript.info/1-js/02-first-steps/01-hello-world/1-hello-alert/solution.view/index.html
Ilya Kantor 9ad9063d00 up
2016-11-28 21:35:42 +03:00

12 lines
No EOL
104 B
HTML

<!DOCTYPE html>
<html>
<body>
<script>
alert( "I'm JavaScript!" );
</script>
</body>
</html>