Hi in the below code logo and text was not displaying. when I am adding the style to vertical-align:center.I want image and text should me center
Any one help me
.logo{
  
  display:inline-block;
}
.logo a {
  font-size: 3em;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 600;
  color: #fff;
  font-family: "Roboto Slab", serif;
}
.logo a img{
    vertical-align:middle;
}
.logo p {
  color: #000;
  text-transform: uppercase;
  font-size: 1.2em;
  margin-top: -10px;
  display:inline-block;
}<div class="logo">
      <a href="index.html"><img src="images/logo_sml.jpg"></a>
      <p>Newton Public School<br>
   Kanaka Nagar-Rt Nagar<br>
   Reach Out, Reach High, Reach Beyond</p>
      </div> 
     
     
     
     
    