zeek47.html
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>JavaScript using chrome developer console</title>
<script>
console.log("Hello Zeeshan");
</script>
</head>
<body>
<p>This is a para in DOM script Right click on inspect and use console.
<ul> There are Two places to add javascript in html page.
<li>Before closing body tag.</li>
<li>After closing title tag.</li>
</ul>
</p>
<script>
console.log("Hello World");
</script>
</body>
</html>
Comments
Post a Comment