Teacher, my html document is in one folder and the pictures are in another folder. How should I introduce pictures?
天蓬老师2018-10-05 08:34:41
Use the src attribute of the <img> tag to import it. Pay attention to the path of the imported image:
If the image is at the same level as your document, you can directly use the image name: < img src="xxx.jpg">
If the image is located in the upper-level directory images of the document: <img src="../images/xxx.jpg"> ;
If the image is located in the lower-level directory images of the document: <img src="images/xxx.jpg">