Photo Image for beginners

Hi, everyone! The code begins with good mentors in life. question? working on my first website which is on GoDaddy hosting. Having a problem with pexels.com. So I can put this free photo on my website. -using an editor called Komodo editor. Using FileZilla also.for hosting upload. :slight_smile:

<!DOCTYPE html>
<html>
    
<title>Camping in Sonoma County</title>

<img src= "pexels-photo-134634-1.jpeg.>"width="250" height="400">

<h1 style="color:black;">Welcome to Cristina Forestville Camp grounds.</h1>



<body style="background-color:purple;">

If the photo is hosted by pexels.com, then you need to include the fully qualified domain name and not just the image name. There’s also a typo in your code (remove the .> from the end of your image path):

<img src= "https://pexels.com/path/to/file/pexels-photo-134634-1.jpeg" width="250" height="400">

If your photo is on your web host, then double check the path to that image as well. It should be a relative path (relative to the html file that’s loading the image).

<img src="/path/to/image/pexels-photo-134634-1.jpeg" width="250" height="400">

If the image is in the same directory as the html file it’s not required of him to add the full file path. He is missing an “alt” attribute which is required under W3C Standards, if you don’t want to write one out just add alt=“” so you comply with standards without a lot of extra effort. Thoughts?

If it’s being served from the same domain then a relative path is all that’s required. A URL is more abstract than a directory and the image can be on a completely different machine so long as they are accessed via the same FQDN.

I’d say you should direct this to the OP. It’s not at all related to the question, but it’s certainly good info.

He asked for help inserting an image, he was also missing an alt tag which is required by W3C Standards. I think it’s related and we should be teaching this to all new developers.

Hi. Cool ! is this good? Well it didn’t work. what next.?
<img src="www.https://pexels.com alt=“pexels-photo-134634-1.jpeg” width=“250” height=“400”>

whatever you have in the src attribute, for example

https://pexels.com/path/to/file/pexels-photo-134634-1.jpeg

should actually point to your file. Do you have the right address?

Hello. take a look.

it does not work. remember you have to download the photo to a size fro the drop-down menu

And if you look at the photo on that page you can see that it has its own url, which is https://static.pexels.com/photos/374845/pexels-photo-374845.jpeg. Maybe they prevent you from linking to it for the purpose of embedding, but otherwise, that’s the URL you want to use.

(EDIT: to add - that if you can’t link to it there, because they don’t want you to, you will need to re-host the picture somewhere else for yourself)

hi,.it does not work on my editor.

Camping in Sonoma County

Welcome to Cristina Forestville Camp grounds.

@r1chard5mith is right, I think. The url your using links to an html page and not the actual image file.

A quick codepen demo shows how the www.pexels.com url is failing and the static.pexels.com url is working. Thankfully, it looks like they do allow “hot-linking”.

https://codepen.io/cloudsociety/pen/yXZaGx?editors=1000

That code does not meet syntax standards. Write like this:
<img src="https://images.pexels.com/photos/374845/pexels-photo-374845.jpeg?w=1260&h=750&auto=compress&cs=tinysrgb" alt="" />
Remember that the src attribute requires the link to be in quotes.

Yo bro! Cool.
this work well. I would have never fixed this problem on my own. This is my first page. How did you find the answer?

1 Like

I’ve studied the W3C HTML Specification (HTML Standard), I’ve had a lot of practice and focus on writing standards compliant code at all times. It just takes a lot of time and practice, you’ll get better as you continue doing more projects. Also I noticed you were trying to put the page URL and not the direct image URL, you have to put a direct URL to the image, a page URL won’t work. That being said I think reading the W3Schools HTML Tutorial (HTML Tutorial) might be beneficial for you and you’d have a stronger understanding while working on the challenges here. Good luck on your future progress here and let us know if you have any further questions :slight_smile:

1 Like