Tuesday, 9 June 2015

Html Tags for Beginners

Html Tags For Beginners

Image Tag

<html>
<head>
<title>New html page</title>
</head>
<body>
1st method

<img src="gentinghighlands.jpeg" width="size you want to display ex: 500" 
height="size you want to display ex: 500" alt="yout picture name"></img>

2nd method

<img src="c:/picture/gentinghighlands.jpeg" width="size you want to display ex: 500" 
height="size you want to display ex: 500" alt="yout picture name"/>

if you close with backslash, it means self close.

</body>