en.javascript.info/archive/01-hello-world/1-hello-alert/solution.view/index.html
2016-07-19 23:36:27 +03:00

12 lines
No EOL
104 B
HTML

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