How do I change a html code to a http code?

The site I'm trying to put this banner on only allows html coded banners, and the banner I want to put on there is a http one.

Comments

  • I think what you have is the file location to the banner on the web. Something that might look something like:

    http://www.somesite.com/ images/yourbanner.jpg

    To make the banner at this url display on the web you'd need to write HTML (Hyper Text Markup Language), which tells the browser what to display and how to display it, to tell the browser what to do. Here's an example of how you'd do that:

    <a href="http://www.somesite.com"/ title="My Site"> <img src="http://www.somesite.com/ images/yourbanner.jpg width="468" height="60" alt="This is my banner!" /> </a>

    What's happening here is:

    <a href - This creates a link. In this case the banner will be linked to somesite.com (change as necessary)

    <img src - This tells the browser to display an image, and which image to display. Change the link location on the image as necessary. You'll also need to change the width and height attributes to fit your banner.

    Cheers!

  • I'm not sure what you're asking and here's why:

    HTML means "hyper-text markup language". It's the language that websites are written in (generally speaking)

    HTTP means "hyper-text transfer protocol". It's the rules for sending HTML from a web site to your browser.

    They aren't really related. More info?

Sign In or Register to comment.