First Blog

First Blog Post

Heading

This is the first blog post. You can include Markdown or HTML tags.

For instance, you can use bold, italics, or a highlight.

Brief Article Content

Here you can write a concise overview of the content.

Article Image

The following is a sample image.

UL / LI Sample

  • This is the first list item
  • You can add more details in subsequent items
  • Using lists helps organize key points effectively

OL / LI Sample

  1. This is the first item in a numbered list
  2. Subsequent items follow in order
  3. Numbered lists are ideal for showing steps or sequences

Simple Coding Sample

console.log("Hello, world!");

function greet(name) {
    console.log(`Hello, ${name}!`);
}

greet("Alice");  // "Hello, Alice!" is displayed