how to display the image in the html in the CSS code example
Example 1: images in html
<html>
<head>
</head>
<body>
<img src="exampel.end">
</img>
</body>
</html>
Example 2: how to add an image in css
.element {
background-image: url("imageFile.png");
}