Images

Images are made responsive so that it scales with the parent element.

Big Image

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore.

Test Image

Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.

Small Image

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore.

Small Test Image

Labore et dolore.

<h3>Big Image</h3>
<p>
	Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
	tempor incididunt ut labore et dolore.
</p>
<p>
	<img
		src="https://mltshp-cdn.com/r/1OWNY?width=550&dpr=2.5"
		alt="Test Image"
	/>
</p>
<p>
	Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore
	eu fugiat nulla pariatur.
</p>

<h3>Small Image</h3>
<p>
	Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
	tempor incididunt ut labore et dolore.
</p>
<p>
	<img
		src="https://mltshp-cdn.com/r/1ND3N?width=340&dpr=1"
		alt="Small Test Image"
	/>
</p>
<p>Labore et dolore.</p>

Figures

Figures are usually used to refer to images:

Figure Heading

This is a placeholder image, with supporting caption.

Here, a part of a poem is marked up using figure:

‘Twas brillig, and the slithy toves
Did gyre and gimble in the wabe;
All mimsy were the borogoves,
And the mome raths outgrabe.

Jabberwocky (first verse). Lewis Carroll, 1832-98
<p>Figures are usually used to refer to images:</p>
<figure>
	<img alt="" src="https://mltshp-cdn.com/r/1PJ8Z?width=550&dpr=2" />
	<figcaption>
		<h4>Figure Heading</h4>
		<p>This is a placeholder image, with supporting caption.</p>
	</figcaption>
</figure>
<p>Here, a part of a poem is marked up using figure:</p>
<figure>
	<p>
		‘Twas brillig, and the slithy toves<br />
		Did gyre and gimble in the wabe;<br />
		All mimsy were the borogoves,<br />
		And the mome raths outgrabe.
	</p>
	<figcaption>
		<cite>Jabberwocky</cite> (first verse). Lewis Carroll, 1832-98
	</figcaption>
</figure>

Embeds

Sometimes all you want to do is embed a little love from another location and set your post alive.

Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.

Culpa qui officia deserunt mollit anim id est laborum.

<p>
	Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut
	aliquip ex ea commodo consequat.
</p>
<div style="--aspect-ratio: 0.5625">
	<iframe
		width="1280"
		height="720"
		src="https://www.youtube.com/embed/v7MGUNV8MxU"
		frameborder="0"
		allowfullscreen
	></iframe>
</div>
<p>Culpa qui officia deserunt mollit anim id est laborum.</p>