I am trying to overlay two images in HTML code over text that is displayed on my webpage in CSS, what is the simplest way to accomplish this. I want these two images on top of the text that is currently on top of these images.
HTML Code:
<body>
<img src="" id="image" style="width:270px;height:270px; position:absolute; left:2270px;top:770px;"/>
<img src="" id="image1" style="width:270px;height:270px; position:absolute; left:30px;top:770px;"/>
</body>