canvas5 = {
const WIDTH = width
const HEIGHT = width / 4
const context = DOM.context2d(WIDTH, HEIGHT)
const center = { x: WIDTH / 2, y: HEIGHT / 2 }
context.font = '48px serif'
context.fillText('Salut', 10, 50)
context.moveTo(center.x, 0)
context.lineTo(center.x, HEIGHT)
context.strokeStyle = 'indianred'
context.stroke()
context.font = '20px sans'
context.strokeStyle = 'steelblue'
context.textAlign = 'start'
context.strokeText('text-align=start', center.x, center.y - 20)
context.textAlign = 'center'
context.strokeText('text-align=center', center.x, center.y)
context.textAlign = 'end'
context.strokeText('text-align=end', center.x, center.y + 20)
return context.canvas
}