<!DOCTYPE html> <html> <body> <p contenteditable>some text</p> <p title=paragraph>The value of title attribute is unquoted string.</p> <p title=new paragraph>The value of title attribute is unquoted string.</p> <p title="new paragraph">The value of title attribute is double quoted string.</p> <p title='new paragraph'>It is single quoted string.</p> <p contenteditable> It is editable text. </p> <p style="background-color:green; color:white;">CSS properties are applied on the paragraph.</p> </body> </html>
Run
×
Share