Test Typography For The Blog
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.1
An apple is a sweet, edible fruit produced by an apple tree (Malus pumila). Apple trees are cultivated worldwide, and are the most widely grown species in the genus Malus. The tree originated in Central Asia, where its wild ancestor, Malus sieversii, is still found today. Apples have been grown for thousands of years in Asia and Europe, and were brought to North America by European colonists. Apples have religious and mythological significance in many cultures, including Norse, Greek and European Christian traditions.2
Inline styles to test:
strong, emphasis, strong and emphasis, code
, strikethrough, 🤷 ❤️ 😂 💜, , , , Link or just do https://example.com, testing image:
Heading 1
Heading 2
Heading 3
Heading 4 is as big as normal text but bold
Heading 5
Heading 6
Let's test manual anchor link declaration:
Nice, let's test internal linking now: my link
Cute Table:
Left-Aligned | Center Aligned | Right Aligned |
---|---|---|
col 3 is | some wordy text | $1600 |
col 2 is | centered | $12 |
zebra stripes | are neat | $1 |
Lists:
- Unordered list item 1.
- Unordered list item 2.
Unordered with + - * and Ordered with 1. or 1)
- ordered list item 1.
- ordered list item 2.
- sub-unordered list item 1.
- sub-unordered list item 2.
Syntax Highlighting:
const num1 = prompt("Enter first number");
const num2 = prompt("Enter second number");
const sum = parseInt(num1, 10) + parseInt(num2, 10); // "+" means "add"
alert("Sum = " + sum); // "+" means combine into a string
From Apple