+ 1
How to insert images with html
Hi I'm working on my first coding project, I'm very new to coding and to be honest I'm not to good at it either but I want to get better. My question is, how do I insert a google image into my code? Thanks!
3 Answers
+ 1
Syntax example
<img alt="description" src="path_img/image.png" [width="x px" height="y px"] />
+ 1
supposed you want to add image with this path = "image/myimage.jpg" then you should code:
<img src="image/myimage.jpg" alt="alternative description"/>
for google image, right click on th image of your choosing and select copy image address then change the "image/myimage.jpg" with that url.