Welcome to the New Blog!
Hello and welcome! I'm thrilled to launch this new blog, a space where I'll be sharing insights, stories, and everything in between. To kick things off, I wanted to create a post that not only introduces the blog but also serves as a living style guide, showcasing all the formatting possibilities at our disposal.
Text Formatting
Let's start with the basics. You can easily format text to make it stand out.
- Bold text is great for emphasis.
- Italic text can be used for subtle highlighting or foreign words.
- You can even combine them for bold and italic text.
- For corrections or to show changes, you can use
strikethrough.
Headings
Organize your content with headings and subheadings. This post uses them to create a clear structure.
Heading 1
Heading 2
Heading 3
Heading 4
Heading 5
Heading 6
Lists
Lists are perfect for organizing information.
Bulleted List:
- Item 1
- Item 2
- Nested Item 1
- Nested Item 2
- Item 3
Numbered List:
- First item
- Second item
- Third item
Links
You can easily link to other pages, whether they are internal or external. Here's a link to Google.
Code Blocks
For the developers out there, sharing code is a breeze. Here are a few examples with syntax highlighting:
JavaScript:
function greet(name) {
console.log(`Hello, ${name}!`);
}
greet('World');
Python:
def fibonacci(n):
a, b = 0, 1
while a < n:
print(a, end=' ')
a, b = b, a+b
print()
HTML:
<!DOCTYPE html>
<html>
<head>
<title>My Page</title>
</head><body>
<h1>Welcome!</h1>
</body>
</html>
Tables
Tables are a great way to display data in a structured way.
Feature | Supported | Example |
---|---|---|
Headings | Yes | # Heading |
Bold Text | Yes | **Bold** |
Code Blocks | Yes | ```js |
Tables | Yes | This table |