Images

CSS color blocks, not http images.

Do not fetch http images. Use a CSS color block as a stand-in. HTML pane + CSS pane.

Goal

Show a brown kiosk swatch next to the title.

Paste into the HTML pane:

<h1>Nairobi kiosk</h1>
<div class="swatch" role="img" aria-label="Brown kiosk swatch"></div>

Paste into the CSS pane:

.swatch {
  width: 120px;
  height: 80px;
  background: #8a5a12;
  border-radius: 8px;
}

Another HTML block:

<p>Mombasa</p>
<div class="swatch" style="background:#0e7490;width:80px;height:80px"></div>
<p>Kisumu lakeside</p>
<div class="swatch" style="background:#1d4ed8;width:80px;height:40px"></div>