Created
November 2, 2020 02:30
-
-
Save mahadiul-hasan/da95d2d01d0afebee79101404033bb1e to your computer and use it in GitHub Desktop.
First JavaScript Code
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!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