Reputation: 27
Can someone give me feedback on this: Made the code using a third party image host (i've used them before). When I put the code in where I want it on the page (after checking on google inspect) it doesn't show up at all.
<div id="header"> <img src="preview.ibb.co/n25Rcy/banner_18.jpg"; width="920" height="174">
Upvotes: 2
Views: 229
Reputation: 6467
You need to add the protocol at the start of the url (I used https in the code below).
<div id="header"> <img src="https://preview.ibb.co/n25Rcy/banner_18.jpg"; width="920" height="174">
Upvotes: 1