The image is not loading when I am using this script.
<!DOCTYPE html>
<html>
<head>
<title>test</title>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.4/angular.min.js"/>
</head>
<body>
<img href="https://static.pexels.com/photos/33109/fall-autumn-red-season.jpg" width="200" height="267" alt="me">
</body>
</html>
If I remove the script I'm getting the Image.Code:
<!DOCTYPE html>
<html>
<head>
<title>test</title>
</head>
<body>
<img src="https://static.pexels.com/photos/33109/fall-autumn-red-season.jpg" width="200" height="267" alt="me">
</body>
</html>