HTML-File-Paths

HTML File Paths

HTML File Paths Path Description <img src=”picture.jpg”> picture.jpg is located in the same folder as the current page <img src=”images/picture.jpg”> picture.jpg is located in the images folder in the current folder <img src=”/images/picture.jpg”> picture.jpg is located in the images folder at the root of the current web <img src=”../picture.jpg”> picture.jpg is located in the folder …

HTML-JavaScript
HTML-Iframe
HTML-Id
HTML-Classes
html-lists
HTML Images

Add Image in HTML

HTML Images Images can improve the design and the appearance of a web page. img Example <img src="pic_trulli.jpg" alt="Italian Trulli">   Example <img src="img_girl.jpg" alt="Girl in a jacket">   Example <img src="img_chania.jpg" alt="Flowers in Chania">   HTML Images Syntax In HTML, images are defined with the <img> tag. The <img> tag is empty, it contains …
HTML-CSS-13
HTML-Colors-12