How can I add an image from Google search engine from mobile? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

How can I add an image from Google search engine from mobile?

I had created a HTML webpage. I need to add images from Google search engine. How can I do it?

10th Feb 2019, 7:06 AM
Razin Keelath
Razin Keelath - avatar
2 Answers
+ 9
Use the <img> tag. <img src="image_url"> The src attribute indicates the url of the image that you want to insert into your webpage. Go on the image. Tap on the image. Click on Share. Then you'll get Tap to copy the image. Copy the url and paste it in the src part of img tag. Hope this helps.
10th Feb 2019, 7:40 AM
Nova
Nova - avatar
0
Just save that image with unique name and then <img src="name of image"> note: it is case sensitive so don't use once capital letter to input name and save and in adding time small letter to be away from error.
10th Feb 2019, 9:46 AM
Dibyendu Samanta
Dibyendu Samanta - avatar