I'm new to using Craft CMS and trying to successfully make an image display.
I have set up a field with the handle heroImage
and this is the code I have within the template.
{% set image = entry.heroImage.one() %}
<div>
<img src="{{ image.getUrl }}">
</div>
However, the image is not displaying in the browser.