1<img src="flowers.jpg" alt="flowers">
2
3//Always add the image type (jpg,png, etc) Adding alt text
4is also good coding practice :)
1<!DOCTYPE html>
2<html>
3 <head>
4 <title>How To Put Images Into HTML</title>
5 <meta charset="UTF-8">
6 </head>
7 <body>
8 <img src="YourImageName.YourImageFileType">
9 </body>
10</html>