How to use Images in Markdown
To add an image with a specific size, use this syntax:

Breakdown:
!: Starts the image tag.[Sample Image]: Alt text.(images/site.jpg): Path to the image file.{: width="300px" height="200px" }: Custom attributes where you can set width, height, or CSS classes.
Other Options:
- Only Width:
{: width="50%" } - Only Height:
{: height="100px" } - Using CSS classes:
{: .my-custom-class }