2
I’m trying to make a layout as shown in the image. Two columns, the second being aligned with a text at the top, and another text below.
So far, what I have achieved is to align the entire text below.
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.2.1/css/bootstrap.min.css" rel="stylesheet"/>
<div class="row">
<div class="col">
<img src="http://placehold.jp/800x1000.png" class="img-fluid">
</div>
<div class="col align-self-end">
<h4>NOME <b>SOBRENOME</b></h4>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Sint ratione reprehenderit, error qui enim sit ex provident iure, dolor, nulla eaque delectus, repudiandae commodi. Velit assumenda odit quisquam at error.</p>
</div>
</div>
How do I align text correctly using Bootstrap 4?