Style Guide

Welcome to the Style Guide. The purpose of this page is to demonstrate the view of the various types of text that can be typed.

Heading level 1

Heading level 2

Heading level 3

Heading level 4

This is the title

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque mi sapien, aliquet id lobortis eu, dignissim ut purus. In interdum mauris iaculis eros mollis vulputate. Donec vehicula, dolor quis sollicitudin finibus, mauris sapien commodo felis, in aliquam lorem tortor mattis nisi. Suspendisse nec lectus vel nulla eleifend elementum. Phasellus sed molestie neque. Aliquam lacus ante, dignissim volutpat varius id, porta a nisi. Aenean quam mi, scelerisque nec euismod varius, gravida sed elit. Sed eu vulputate diam.

Dorothy followed her through many of the beautiful rooms in her castle.

Dorothy followed her through many of the beautiful rooms in her castle.

The Witch bade her clean the pots and kettles and sweep the floor and keep the fire fed with wood.

The quarterly results look great!

  • Revenue was off the chart.

  • Profits were higher than ever.

    Everything is going according to plan.

I really like using Markdown.

I think I'll use it to format all of my documents from now on.

I just love bold text.

Italicized text is the cat's meow.

This text is really important.

Ordered Lists

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

This is a new list

  1. First item
  2. Second item
  3. Third item
    1. Indented item
    2. Indented item
  4. Fourth item

Unordered Lists

  • First item
  • Second item
  • Third item
  • Fourth item

Nested Lists

  • First item
  • Second item
  • Third item
    • Indented item
    • Indented item
  • Fourth item

My favorite search engine is Duck Duck Go.

I love supporting the EFF. This is the Markdown Guide. See the section on code.

This word is bold. This word is italic.


Below is an exmaple of code using Syntax Highlighting.

  const name = "Bruce Wayne";

  const sample = () => {
    console.log(name);

    return name;
  }