Plot.plot({
caption:html`<h2 style = "color:steelblue">MPG VS. HP</h2>`,
x:{domain:[0,50],grid:true,label:"MPG"},
y:{domain:[0,300],grid:true,label:"HP"},
marks:[
Plot.ruleX([0]),
Plot.ruleY([0]),
Plot.dot(X,{x:X,y:Y,fill:"steelblue",stroke:"black"})
]
})