<div class="container">
<div class="block profile-pic">
<img src="https://images.unsplash.com/photo-1519180091-1ba90342d1af?ixlib=rb-0.3.5&ixid=eyJhcHBfaWQiOjEyMDd9&s=991cd0bbdad4a795fdea7e0678b0ae82&auto=format&fit=crop&w=1534&q=80" alt="">
</div>
<div class="block information">
<h1>John Doe</h1>
<p class="expertise">C.E.O of Google</p>
<address>1600 Amphitheatre Parkway, Mountain View, CA, 94043</address>
<p>(02) 123-456-89</p>
</div>
</div><!-- /.container -->
* {
margin: 0;
padding: 0;
}
body {
background: #333;
color: #fff;
}
h1 {
margin: 50px 0 0;
font-size: 40px;
}
p.expertise {
padding-bottom: 10px;
border-bottom: 2px solid #000;
margin-bottom: 10px;
font-weight: bold;
font-size: 24px;
}
.container {
width: 600px;
height: 350px;
margin: 50px auto 0;
border: 5px solid #000;
background: #1380A1;
display: grid;
grid-template-columns: 200px auto;
}
.profile-pic img {
width: 100%;
margin: 20px;
border: 5px solid #000;
}
.information {
box-sizing: border-box;
padding: 20px 40px 20px 50px;
}
address {
font-size: 24px;
margin-bottom: 10px;
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.