# Heading level 1
## Heading level 2
### Heading level 3
#### Heading level 4
##### Heading level 5
###### Heading level 6
I really like using Markdown.
I think Iโll use it to format all of my documents from now on.
This is the first line.
And this is the second line.
You can add emphasis by making text bold or italic.
To bold text, add two asterisks or underscores before and after a word or phrase. To bold the middle of a word for emphasis, add two asterisks without spaces around the letters.
I just love **bold text**. I just love __bold text__.
I just love bold text.
I just love bold text.
Loveisbold
To italicize text, add one asterisk or underscore before and after a word or phrase. To italicize the middle of a word for emphasis, add one asterisk without spaces around the letters.
Italicized text is the catโs meow.
Italicized text is the catโs meow.
Acatmeow
To emphasize text with bold and italics at the same time, add three asterisks or underscores before and after a word or phrase. To bold and italicize the middle of a word for emphasis, add three asterisks without spaces around the letters.
This text is really important.
This text is really important.
This text is really important.
This text is really important.
This is reallyveryimportant text.
To create a blockquote, add a > in front of a paragraph.
Dorothy followed her through many of the beautiful rooms in her castle.
You can organize items into ordered and unordered lists.
To create an ordered list, add line items with numbers followed by periods. The numbers donโt have to be in numerical order, but the list should start with the number one.
First item
Second item
Third item
Fourth item
First item
Second item
Third item
Fourth item
To add another element in a list while preserving the continuity of the list, indent the element four spaces or one tab, as shown in the following examples.
This is the first list item.
Hereโs the second list item.
I need to add another paragraph below the second list item.
And hereโs the third list item.
This is the first list item.
Hereโs the second list item.
A blockquote would look great below the second list item.
And hereโs the third list item.
Open the file.
Find the following code block on line 21:
<html>
<head>
<title>Test</title>
</head>
Update the title to match the name of your website.
Open the file containing the Linux mascot.
Marvel at its beauty.
Close the file.
To denote a word or phrase as code, enclose it in backticks (`).
At the command prompt, type nano
.
If the word or phrase you want to denote as code includes one or more backticks, you can escape it by enclosing the word or phrase in double backticks (``).
Use `code` in your Markdown file.
<html>
<head>
</head>
</html>
To create a horizontal rule, use three or more asterisks (***), dashes (โ), or underscores (___) on a line by themselves.
To create a link, enclose the link text in brackets (e.g., [Duck Duck Go]) and then follow it immediately with the URL in parentheses (e.g., (https://duckduckgo.com)).
My favorite search engine is Duck Duck Go.
You can optionally add a title for a link. This will appear as a tooltip when the user hovers over the link. To add a title, enclose it in parentheses after the URL.
My favorite search engine is Duck Duck Go.
To quickly turn a URL or email address into a link, enclose it in angle brackets.
https://www.markdownguide.org fake@example.com
To add an image, add an exclamation mark (!), followed by alt text in brackets, and the path or URL to the image asset in parentheses. You can optionally add a title after the URL in the parentheses.
To add a link to an image, enclose the Markdown for the image in brackets, and then add the link in parentheses.
Syntax | Description |
---|---|
Header | Title |
Paragraph | Text |