AnnabelWhibley / project_1

Codeacademy project
0 stars 0 forks source link

Relative reference tip #2

Open zannain opened 6 years ago

zannain commented 6 years ago

No need to add the ./ when using relative references to link assets, stylesheets or javascscript files in your HTML your browser will know to look in the same directory as index.html.

<img src="./resources/frames.jpeg" />
<!-- You can instead -->
<img src="resources/frames.jpeg" />