Signup/Sign In
Ask Question
Not satisfied by the Answer? Still looking for a better solution?

Please provide the code for level 1 lesson 11 ?

Error like put src attribute before tag
by

6 Answers

kshitijrana14
Try this one:

<!DOCTYPE html>
<html>
<head>
<title>
My Webpage Title
</title>
</head>
<body>
<a href="www.google.com"><img src="http://www.studytonight.com/css/resource/flat-ui-icon/startup-icon.png";></a>
</body>
</html>
kamale
Hello thanks for your answer, but it again showing error
iamabhishek
What error are you getting can you please share that?
kamale
It showing an error like "Please include the picture using <img src=""/> with a value for src attribute."
iamabhishek
Please try this:

<!DOCTYPE html>
<html>
<head>
<title>
My Webpage Title
</title>
</head>
<body>
<a href="SOME_URL"> <img src="SOME_URL"/> </a>
</body>
</html>

You can put actual URLs in place of SOME_URL text
I hope it works. If it doesn't work, please let us know and we will look into this.
kamale
Thanks Sir, It is Working. Thanks for your early reply.......

Login / Signup to Answer the Question.