0
Hello, does anyone know how to insert the photo into the web page? Everything I did didn't work, can you help me?
Please advise
5 Réponses
+ 9
محمدحسین محسنی
You should learn this...
How to host/upload an image
https://code.sololearn.com/Wy3lrXNwGsgJ/?ref=app
How to host/upload an image with Dropbox
https://code.sololearn.com/WW6t4B73kJVz/?ref=app
+ 2
You need to share a link to that code. Without a code review, it's just a guessing game about what went wrong
https://www.sololearn.com/post/75089/?ref=app
+ 1
Using <img src="url"> in html file should do it.
0
By using img tag
Example
<img src="imgUrl">
0
You must put the tags inside the body of the document.
Between
<body>...</body>
Then the image tag <img> + the resource with the address, it should look like this:
<body>
<img src="your photo.jpg">
</body>
good luck