Toggle navigation
☰
Home
HTML
CSS
Scripting
Database
<!DOCTYPE html> <html> <head> <title>My Example</title> <script> /* Example JavaScript function */ function exampleFunction() { alert("I am embedded into the HTML file!") } </script> </head> <body> <button onClick="JavaScript:exampleFunction()">Click Me</button> </body> </html>