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

Level 5 lesson 3 html

<!DOCTYPE html>
<html>
<head>
<title> web page </title>
</head>
<body>
<p style="text-align:center">
<img src=" ">
</p>
</body>
</html>

After adding img tag the error is showing add img tag
by

1 Answer

sam5epi0l
This is how it should be solved:


<!DOCTYPE HTML>
<html>
<head>
<title>Neela Prasad</title>
</head>

<body>
<p style="text-align:center">
<img src="https://e7.pngegg.com/pngimages/416/844/png-clipart-google-logo-g-suite-mobile-phones-11-computer-logo.png"/>
</p>
</body>
</html>

Login / Signup to Answer the Question.