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"},
style:{color:"#E9967A",background:"black"},
marks:[
Plot.frame({fill:"grey",stroke:"#E9967A"}),
Plot.ruleX([0]),
Plot.ruleY([0]),
Plot.dot(eights,{x:"Miles_per_Gallon",y:"Horsepower",fill:"steelblue",stroke:"black"})
]
})