13 lines
277 B
HTML
13 lines
277 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Welcome</title>
|
|
</head>
|
|
<body>
|
|
<h1>Welcome to Modern JavaScript</h1>
|
|
<script>
|
|
// call a method that displays a dialog
|
|
alert("Hi");
|
|
</script>
|
|
</body>
|
|
</html> |