Iframes and File paths | HTML: iframes are using to get the other documents and File paths are using to get the files by suitable paths. Here is the iframesandPaths.html: <!DOCTYPE html> <html lang="en" dir="ltr"> <head> <title>Iframes and Paths in Html</title> </head> <body> <!-- Ifame in Html --> <iframe src="ClassesAndIds.html" style="height:505px;width:300px;" title="Iframe"></iframe> <!-- File Paths in Html --> <img src="park.jpg" alt="park in current folder"> <img src="images/park.jpg" alt="park in images folder"> <img src="/images/park.jpg" alt="park in root of current web"> <img src="../images/park.jpg" alt="park in one level up folder"> </body> </html> Web view of Html: Here is the Video: