Modifier Le code:
Voir Résultat »
Essayez-le vous-même - ©
w3ii.com
<
!DOCTYPE
html
>
<
html
>
<
body
>
<
h1
>
My First Web Page
<
/h1
>
<
p
>
My first paragraph.
<
/p
>
<
button
type
="button"
onclick
="document.write(5 + 6)"
>
Try it
<
/button
>
<
/body
>
<
/html
>
<!DOCTYPE html> <html> <body> <h1>My First Web Page</h1> <p>My first paragraph.</p> <button type="button" onclick="document.write(5 + 6)">Try it</button> </body> </html>