If you want to position text absolutely on a page, you can follow this example:
<div class="container">
<img src="../../1021.png" alt class="image img-fluid">
<div class="content">Your text goes here</div>
</div>
Here's the accompanying CSS code:
.container {
position: relative;
width: 100%;
}
.container img {
position: relative;
z-index: 0;
}
.container .content {
position: absolute;
z-index: 10;
bottom: 0;
}
Make adjustments as needed. The concept is to have both your text and image elements within a container with a relative position. This allows you to position the text absolutely in relation to the container. Keep an eye on the z-index property to ensure the text appears above the image.