Bearbeiten Sie den Code:
Siehe Ergebnis »
Versuch es selber - ©
w3ii.com
<
!DOCTYPE
html
>
<
html
>
<
body
>
<
h1
>
My First Web Page
<
/h1
>
<
p
>
My first paragraph.
<
/p
>
<
button
type
="button"
onclick
="myFunction()"
>
Click me!
<
/button
>
<
script
>
function
myFunction() {
document.write(
"Hello World"
);
}
<
/script
>
<
/body
>
<
/html
>
<!DOCTYPE html> <html> <body> <h1>My First Web Page</h1> <p>My first paragraph.</p> <button type="button" onclick="myFunction()">Click me!</button> <script> function myFunction() { document.write("Hello World"); } </script> </body> </html>