Skip to content

arturovilla/portfolio

Repository files navigation

Sample Markdown Document

Welcome to this sample Markdown document. Below you'll find a variety of Markdown elements to illustrate how they can be used.

Lists

Unordered List

  • Item 1
  • Item 2
    • Subitem 2.1
    • Subitem 2.2
  • Item 3

Ordered List

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

Links

You can include links in your document:

Images

Here’s how you can add an image:

Sample Image

Blockquotes

"This is a blockquote. It is often used to highlight quotes or important text."

Code

Inline code can be represented by backticks: code example.

For code blocks, you can use triple backticks:

def hello_world():
    print("Hello, world!")

Tables

Tables can be very useful:

Header 1 Header 2 Header 3
Row 1 Data 1 Data 2
Row 2 Data 3 Data 4

Horizontal Rule


This is a horizontal rule. It's useful for separating sections.

Emphasis

  • Italic text
  • Bold text
  • Bold and italic text

Task List

  • Completed task
  • Incomplete task