Need help to add images to HTML

<!DOCTYPE html> <body> <img src="mainpage.jpg"> <img src="secondpage.jpg"> <img src="thirdpage.jpg"> <img src="forthpage.jpg"> <img src="fifthpage.jpg"> <img src="lastpage.jpg"> </body> </html> Here is my Code
18 Replies
b1mind
b1mind2mo ago
Are all those images in the same folder as the HTML? I would make sure you understand file paths
baller
ballerOP2mo ago
Yeah they are. Do you want to see?
b1mind
b1mind2mo ago
GeeksforGeeks
HTML File Paths - GeeksforGeeks
HTML file paths indicate the location of resources needed for a webpage, with two main types: absolute paths that provide the full URL and relative paths that specify the location in relation to the current document.
b1mind
b1mind2mo ago
How are you trying to view the HTML where the images don't show up? Hosted? Local http ?
baller
ballerOP2mo ago
Local
b1mind
b1mind2mo ago
Are you using a web server? Or just trying to open file://
baller
ballerOP2mo ago
Open
b1mind
b1mind2mo ago
That's your issue then
baller
ballerOP2mo ago
Thank you so much! I'll try it right now.
b1mind
b1mind2mo ago
If you are using vs code there is an official extension https://marketplace.visualstudio.com/items?itemName=ms-vscode.live-server
Live Preview - Visual Studio Marketplace
Extension for Visual Studio Code - Hosts a local server in your workspace for you to preview your webpages on.
b1mind
b1mind2mo ago
Live server extension is another popular choice
baller
ballerOP2mo ago
Ok Ok I installed it. Thank you so much @b1mind
b1mind
b1mind2mo ago
Glhf!
baller
ballerOP2mo ago
I can't see the images still, they have all the content for my portfolio.
b1mind
b1mind2mo ago
I would think html would still parse it right but maybe you need to properly self close the <img src="" /> I mean you should anyway.
Sleep Twitch
Sleep Twitch2mo ago
Your webpages are just images of a page?
Simon
Simon2mo ago
I am actually unsure myself what is needed for a .htm to parse. The originally posted markup would not pass the validation test – rather
<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <title>non-empty title</title> </head> <body> <img src="mainpage.jpg"/> <img src="secondpage.jpg"/> <img src="thirdpage.jpg"/> <img src="forthpage.jpg"/> <img src="fifthpage.jpg"/> <img src="lastpage.jpg"/> </body> </html>
The question is, does the page show the broken image icons or is it blank 🤷
Jochem
Jochem2mo ago
browsers are very good at parsing random garbage as HTML
<!DOCTYPE html>
<p>Hello World</p>
<!DOCTYPE html>
<p>Hello World</p>
firefox doesn't even complain about quirks mode when you feed it this so I really doubt a missing HTML opening tag would cause images to not render

Did you find this page helpful?