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>Bold and Italic</title> </head> <body> <p>This is <strong>very important</strong> information.</p> <p>This is <b>bold</b> for visual style only.</p> <p>Please <em>do not</em> ignore this warning.</p> <p>The term <i>Lorem Ipsum</i> is Latin placeholder text.</p> <!-- Combining --> <p>This is <strong><em>critically important</em></strong>.</p> <!-- Other inline elements --> <p>The price is <del>$20</del> now <ins>$15</ins>.</p> <p>H<sub>2</sub>O and E=mc<sup>2</sup></p> </body> </html>
Result
Open