0
How to add images in your html page by this app.
where we have to copy our images in this app
2 ответов
+ 10
Do some like this:
<img src="insertURLofImageHere.jpg" width="100px" height="100px">
This gives an image which has a width of 100px, height of 100px, which has the name "insertURLofImageHere.jpg" and is in the same folder as your document.
or:
<img src="https://www.image.com/image.png" width="100px" height="100px">
for adding images on the internet.
0
Use the <img> tag