Michelle
Michelle

Reputation: 27

adding image into code

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

Answers (1)

OliverRadini
OliverRadini

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

Related Questions