Tribute-page check with VS Code

I am using VS Code. Finished my tribute page, but don’t know how to be checked.
Not understand part with CDN link.

Can you explain me how to use CDN link?

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36.

Challenge: Build a Tribute Page

Link to the challenge:

While you can certainly develop your projects locally using VSCode (or any other editor), in order to submit the project it will need to be live online. You can use CodePen for this or a similar service. The CDN link is how you can include the test suite in your project. If you fork the CodePen starter, it will already be there, but if you don’t fork from CodePen then you will need to include it manually

<script src="https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js"></script>

Thanks.
Don’t use codepen cause don’t know how to add images for projects.

Hi @Zola89 !

If you are interested in adding images from your local device then you will need to host them online somewhere.
https://www.guru99.com/free-photo-hosting.html

Then you can copy the url and add it to the img tag in your project in codepen.

There are other sites like CodeSandbox which will let you upload images.

You can also host the project on something like Surge, Netlify, GitHub Pages and so on. Which will let you use the local images (as long as you link correctly using relative paths).

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.