image in html
<!--Basic Image Format-->
<!--src is source of the image and alt is alternate text
(text to show in case image doesn't show up)-->
<div>
<!--Way 1 - Links - You can use a link without saving an image
example: http://images.unsplash.com/photo-1430116267665-e7f6b3dafce3?ixlib=rb-1.2.1&q=80&fm=jpg&crop=entropy&cs=tinysrgb&w=1080&fit=max-->
<img src="https://add-image-link-here" alt="Add alternate text here">
</div>
<div>
<!--Way 2 - Files - You can use the name of the image saved in your computer
example: teddy-bear.jpg -->
<img src="add-image-stored-locally.jpg" alt="Add alternate text here">
</div>