+ 1
I don't know what to do
I thought coding was easy but I don't even know how to link an image I've trying but to no avail đđ
10 Respostas
+ 6
Show
your
code.
Tag
the
relevant
programming
language.
If you need help, it is essential that you provide the complete context.
It doesn't help stating that you tried, you need to show what you tried.
+ 4
Mmesoma Favour If you want to know how to get image url, then this might help
you:https://sololearn.com/compiler-playground/Wy3lrXNwGsgJ/?ref=app
+ 2
Mmesoma Favour
Every mastermind coder was once a beginner. The more problems you get the more solution you will come to know, never hesitate to ask even a small and normal question. It's good that you asked your question. Today you are gonna learn something new.
To display an image in web, the syntax for the code is:
<img src="image.url" alt="description">
Here img tag is used to display an image and it includes two attributes `src` and `alt`(option and used in case image failed to load).
+ 1
Nobody knows what to do but let me help you
0
But how do i know where the image is located
0
If you're coding from mobile. Just download any app "Image to link" converter. This is what I do to link image..
0
It might seem strange if you want to learn coding but haven't yet learned about folder path structures. At SoloLearn, don't make it a big project to build something like a web application. Instead, you can link to an online image hosting service, of which there are many, like imghippo.
0
I'm learning c language now and idk how to start I'm not getting anything đ
0
Link to website urls': <a href="websitelinkhere"></a>
Link to images (clickable images). So if you click the image you would be redirected to a website url:
<a href="websitelinkhere"></a><img src="yourimagelinkhere">
hope this makes sense...