Back
Syntax
Study
Editor
Mode:
HTML
CSS
JavaScript
PHP
Reset
Run »
HTML / CSS / JS
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Quotations</title> </head> <body> <h1>Famous Quotes</h1> <blockquote cite="https://en.wikiquote.org/wiki/Albert_Einstein"> <p>Imagination is more important than knowledge.</p> <footer>— Albert Einstein</footer> </blockquote> <p>Einstein once said <q>A person who never made a mistake never tried anything new.</q></p> <p>My favourite book is <cite>The Pragmatic Programmer</cite>.</p> </body> </html>
Result
Open