Plot.plot({
width: width,
height: 100,
x: {
domain: [0, 2]
},
y: {
domain: [-2, 2.25]
},
marks: [
new Textbox(
[
`
<div style='display: inline-block; font-size: 30pt; border: 1px solid black;'>
<img width=32 src='https://rud.is/favicon.ico'/> <b style='color: maroon'>'sup</b>, world?
</div>`
],
{ x: 0.7, y: 4, text: (d) => d }
)
]
})