2

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>
J. Foe
  • 75
  • 11
BharathRao
  • 1,846
  • 1
  • 18
  • 28

3 Answers3

1

You din't close script tag

use

<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.4/angular.min.js"></script>

Please check !!

<!DOCTYPE html>
    <html>
    <head>
     <title>test</title>
     <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.4/angular.min.js"></script>
    </head>
    <body>
     <img src="https://static.pexels.com/photos/33109/fall-autumn-red-season.jpg" width="200" height="267" alt="me">
    </body>
</html>
0

The <script> element can't be self-closing (<.../>). You have to close the element with </script>. There is also a mistake on your <img> element. You are using the attribute href. In case the <script> would work your image is still not visible. You have to use the attribute src to show the image.

<!DOCTYPE html>
<html>
    <head>
     <title>test</title>
     <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.4/angular.min.js"></script>
    </head>
    <body>
     <img src="https://static.pexels.com/photos/33109/fall-autumn-red-season.jpg" width="200" height="267" alt="me">
    </body>
</html>
Sebastian Brosch
  • 42,106
  • 15
  • 72
  • 87
0

Try using script tag at the end of body. Also, script tag is not a void element in html, you are not closing your script tag. Try using the following code:

<head>
        <title>test</title>
</head>
<body>
    <img href="https://static.pexels.com/photos/33109/fall-autumn-red-season.jpg" width="200" height="267" alt="me" />
  <script src="https://ajax.googleapis.com/ajax/alibs/angularjs/1.6.4/angular.min.js"></script>
</body>
haMzox
  • 2,073
  • 1
  • 12
  • 25