svgで処理するほうがよいかもしれませんね
テキストとイメージで処理するならこんな感じから
CSS
1<style>
2.imgs{
3position:relative;
4}
5.imgs img{
6position:absolute;
7}
8</style>
9<div class="text">
10test test test test test test<br>
11test test test test test test<br>
12test test test test test test<br>
13test test test test test test<br>
14test test test test test test<br>
15</div>
16<div class="imgs">
17<img src="https://placehold.jp/0000ff/ffff00/660x450.png?text=img1" width="660" height="450">
18<img src="https://placehold.jp/ff0000/00ffff/384x482.png?text=img2" width="384" height="482" style="left:400px;top:100px;">
19</div>
20
上記、テキストと画像をどういう位置関係で処理していきたいのかを
説明してほしいです
ちなみに命題は3枚の絵を使っていますが、説明文では2枚になっていたので
ソースは2枚バージョンにしてあります