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-Block
html-lists
HTML-Images-16

HTML Tables

HTML Table Example Company Contact Country Alfreds Futterkiste Maria Anders Germany Centro comercial Moctezuma Francisco Chang Mexico Ernst Handel Roland Mendel Austria Island Trading Helen Bennett UK Laughing Bacchus Winecellars Yoshi Tannamuri Canada Magazzini Alimentari Riuniti Giovanni Rovelli Italy Defining an HTML Table An HTML table is defined with the <table> tag. Each table row …

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 …