search

Home  >  Q&A  >  body text

Picture introduction

Teacher, my html document is in one folder and the pictures are in another folder. How should I introduce pictures?

OllieOllie2283 days ago1394

reply all(1)I'll reply

  • 天蓬老师

    天蓬老师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:

    1. If the image is at the same level as your document, you can directly use the image name: < img src="xxx.jpg">

    2. If the image is located in the upper-level directory images of the document: <img src="../images/xxx.jpg"> ;

    3. If the image is located in the lower-level directory images of the document: <img src="images/xxx.jpg">

    reply
    2
  • Cancelreply