Home > Back-end >  Issue with image not showing up
Issue with image not showing up

Time:05-05

I am currently following a guide on coursera. But im stuck at a part where my image in my localhost server is not showing up. So its making it to where I cannot continue on with the course. specifically the image for the nav bar. Here is a link to my git.

https://github.com/leoisking/Chinese-Restaurant.git

CodePudding user response:

To display image use img element.

<img src="img_girl.jpg" alt="Logo image" width="500" height="600">

Where src is your image path.

For refereance see below link.

https://www.w3schools.com/tags/tag_img.asp

  • Related