Skip to content

Instantly share code, notes, and snippets.

@mahadiul-hasan
Created November 2, 2020 02:30
Show Gist options
  • Select an option

  • Save mahadiul-hasan/da95d2d01d0afebee79101404033bb1e to your computer and use it in GitHub Desktop.

Select an option

Save mahadiul-hasan/da95d2d01d0afebee79101404033bb1e to your computer and use it in GitHub Desktop.
First JavaScript Code
<!DOCTYPE html>
<html>
<body>
<h1>My First Web Page</h1>
<p>My First Paragraph</p>
<p id="example"></p>
<script>
document.getElementById("example").innerHTML = 10 + 5;
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment