Edit This Code:
See Result »
<
!DOCTYPE
html
>
<
html
>
<
body
>
<
h1
>
My First Web Page
<
/h1
>
<
p
>
My first paragraph.
<
/p
>
<
script
>
window.alert(
5
+
6
);
<
/script
>
<
/body
>
<
/html
>
<!DOCTYPE html> <html> <body> <h1>My First Web Page</h1> <p>My first paragraph.</p> <script> window.alert(5 + 6); </script> </body> </html>
Result:
Privacy Policy