I'm trying to figure out a way to display a phone icon and number on one line, as well as an email icon and address on another line.
body {
font-family: 'Open Sans', sans-serif;
background: #20b2aa;
}
h1 {
font-size: 40px;
color: white;
background: black;
width: 600px;
margin: auto;
}
.info {
background: white;
width: 600px;
height: 150px;
margin: auto;
}
#phoneNumber, #emailAddress {
padding-top: 5px;
padding-bottom: 5px;
}
img {
background: red;
}
p {
background: green;
}
<h1>Contact Me</h1>
<div class="info">
<h3>Eugene</h3>
<img id="phoneImage" src="img/phone.png">
<p id="phoneNumber">(800) 123-4000</p>
<img id="envelopeImage" src="img/envelope.png" alt="">
<p id="emailAddress"><a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="65160a080004010117001616250208040c094b060a08">[email protected]</a></p>
</div>
Check out the screenshot of my current progress below: