Images in HTML
To add images in the code we use img tag. In img tag we use attributes like height, width, src, alt, etc... . In the src attribute we gives the relative path of the image. With the height and width we can adjust the size of the image.
Example
<!Doctype html>
<html>
<head>
<title>Images in HTML</title>
</head>
<body>
<img src="image_path" alt="alternative content" width="460" height="345">
</body>
Tags:
HTML