I want to display the image inside the div container, it just display it before the div
app.layout = html.Div([
html.Div([
html.Div(html.Img(src=app.get_asset_url('ipsosLogo.png'), style={'height':'2%', 'width':'2%'})),
html.H6('Consumer Confidence Index Dashboard',
style={
'textAlign': 'center',
'color': colors['text']
}),
],style={
‘float’: ‘top’,
‘border’: ‘1px solid #ccc’,
‘background-color’: ‘#003AA9’,
‘width’: ‘100%’,
‘height’: ‘60px’
}),
please suggest