+ 1
Why is the image tag not working???
6 ответов
+ 3
It's `src`, not `scr`.
And the link you provided leads to a html-page, not an actual image.
+ 2
Coder You have your heading wrapped in <p> tags. That's semantically incorrect and doesn't do anything useful. You can just delete them. But the <img> and <button> are better to be wrapped with <p> tags.
+ 1
fixed code: <!DOCTYPE html>
<html>
<head>
<title>The Browser</title>
</head>
<body>
<p><h1>LET'S SEARCH</h1></p>
<img src="https://cdn-icons-png.flaticon.com/512/149/149852.png">
<p><h2>What do you want to search today??</h2></p>
<button>Search</button>
</body>
</html>
+ 1
on mobile, press and hold the image and then press “copy”, on desktop, right click the image and click “copy image address” or “copy image URL”
0
Defying Gravity How did you obtain the link of the image?? Please tell
0
Defying Gravity Евгений Thank you so much both of you