Reputation: 23
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
Upvotes: 2
Views: 96
Reputation: 1376
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
Upvotes: 1