2021-11-30 19:08:37 +05:30

14 lines
239 B
HTML

<!doctype html>
<html>
<head>
<title>Canvas HTML5</title>
</head>
<body>
<div id="one">Hello World</div>
<script>
const myEle = document.getElementById("one");
console.log(myEle);
</script>
</body>
</html>