I am experiencing an issue with my HTML design. Even after setting the display to inline-block, the logo and text are not appearing on the same line.
.logo img {
border-width: 0;
height: auto;
max-width: 100%;
vertical-align: left;
}
.logo-text {
clear: both;
display: inline-block;
overflow: hidden;
}
<div class="logo">
<img src="images/logo.png"/>
</div>
<div class="logo-text">
<h1>Tagore English School</h1>
<h1>New Millennium High School</h1>
<h3>"IMPARTING CONCRETE EDUCATION IS OUR MOTTO"</h3>
</div>