Skip to content

Latest commit

 

History

History
14 lines (9 loc) · 399 Bytes

Adding_new_images.md

File metadata and controls

14 lines (9 loc) · 399 Bytes

How to add a new image to the Project Website

  1. Add the image to the public/img folder.
  2. Use an image tag in your HTML page.

Add an image tag in HTML

This is an example of using an image from the public image folder in HTML.

Make sure to add an image description with the alt="" attribute.

<img src="/public/image/my-image.png" alt="My image description">