Hello Blog

Today2 min read

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.

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:

Numbered List:

  1. First item
  2. Second item
  3. Third item

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