MDX vs Markdown differences). Here’s your complete guide to writing blog posts using Markdown syntax.
Use #
symbols for headers. More #
means smaller headers:
# Main Title (H1)
## Section Title (H2)
### Subsection (H3)
**double asterisks**
or __double underscores__
*single asterisks*
or _single underscores_
~~double tildes~~
For bullet points, use -
, *
, or +
:
- First item
- Second item
- Sub-item (indent with 2 spaces)
- Another sub-item
For numbered lists:
1. First step
2. Second step
3. Third step
Format: [Link Text](URL)
Example:
Check out [June Web Design](https://www.junewebdesign.com)
Format: <a href="URL" target="_blank" rel="noopener noreferrer">Link Text</a>
Example:
Visit our <a href="https://www.junewebdesign.com" target="_blank" rel="noopener noreferrer">website</a>
business-meeting.jpg
instead of IMG001.jpg
)Format: 
Example:

To embed a YouTube video, follow these steps:
Example:
<iframe width="560" height="315"
src="https://www.youtube.com/embed/VIDEO_ID"
title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
referrerpolicy="strict-origin-when-cross-origin"
allowfullscreen>
</iframe>
Replace VIDEO_ID
with your actual YouTube video ID (found in the video’s URL after v=
).
Use >
for quotes:
> This is a blockquote. It's great for highlighting important points or testimonials.
For inline code, use single backticks: `code`
For code blocks, use triple backticks:
```javascript
console.log("Hello World!");
```
Use Headers Wisely
Keep Paragraphs Short
Optimize Images
Link Responsibly
target="_blank"
for external linksrel="noopener noreferrer"
for securityFormat for Readability
rel="noopener noreferrer"
for external linksIf you’re ever stuck or need assistance with your blog posts, don’t hesitate to reach out. We’re here to help you create content that looks great and engages your readers effectively.
Remember, the goal is to communicate clearly with your readers. Markdown is just a tool to help you format your message effectively. Focus on your content first, and let Markdown handle the styling.
Founder of June Web Design LLC, specializing in modern Fullstack development and design.