Article content.
Bold and italic and also bold and also italic text.
Visit Example website for details.
Line one
Line two
Line three
This text is red from inline style.
This text is blue and larger.
This paragraph has a yellow highlight.
Bold, italic, and purple.
This text is underlined.
This text is struck through.
This uses Courier New font.
Content inside a div.
Article content.
Section content.
Sub-headings render as bold bullet points:
Content under level 2.
Content under level 3.
Content under level 4.
Content under level 5.
Content under level 6.
Financial results for Q1 through Q3.
| Quarter | Revenue | Costs | Profit |
|---|---|---|---|
| Q1 | $100K | $60K | $40K |
| Q2 | $120K | $70K | $50K |
| Q3 | $150K | $90K | $60K |
Rust factorial example:
fn factorial(n: u64) -> u64 {
match n {
0 | 1 => 1,
_ => n * factorial(n - 1),
}
}
Recursion is elegant but watch the call stack depth!
Text with bold, italic, and bold italic combined.
Inline code snippets in paragraphs.
A link with bold text in context.
Green text with bigger bold inside.
Chart: 
Image without alt: 
Entities: AT&T <html> "quote" 'apos' value here
Numeric: & # $ €
Entity demo with inline style.
Content that appears after a horizontal rule break.
Languages: 你好, 日本語, 한국어, Español, Français, Русский
Symbols: © 2026 ® Registered ™ Trademark € £ ¥ ₹
This paragraph inherits teal color from the parent div.
This one is bold and still teal from inheritance.
This overrides the parent color to dark orange.