en.javascript.info/1-js/02-first-steps/01-hello-world/1-hello-alert/index.html
2020-03-12 11:26:42 +08:00

12 lines
105 B
HTML

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