html css images code example
Example 1: images in html
<html>
<head>
</head>
<body>
<img src="exampel.end">
</img>
</body>
</html>
Example 2: resize image html
<!--
Resize image using html
When we add any image in 'src' attribute of 'img' tag then image appears with original size on webpage
and if we want to resize the image we have to add extra attribute i.e. height and width to img tag to resize the image
-->
Simple img tag
<img src="image_path" alt="Image Sample">
With height and width attribute
<img src="image_path" width="200" height="40" alt="Image Sample">
<!--
I hope it will help you.
Namaste
Stay Home Stay Safe
-->
Example 3: how to add an image in css
.element {
background-image: url("imageFile.png");
}
Example 4: how to add image in html
<img src="logo.png" />