Internal Javascript: Internaljavascript - HTML
Internal Javascript: Internaljavascript - HTML
html
!
!
<!doctype html>
<html>
<head>
<title>Learning Javascript</title>
<meta charset="utf-8" />
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
</head>
<body>
<button onclick="alert('Hi')">Click Me!</button>
<script type="text/javascript">
alert("Page loaded!");
</script>
</body>
</html>