diff --git a/Working-for-Web-(HTML5).md b/Working-for-Web-(HTML5).md
index dacd39b..f478713 100644
--- a/Working-for-Web-(HTML5).md
+++ b/Working-for-Web-(HTML5).md
@@ -297,4 +297,8 @@ Q: Mouse Input not being detected?
A: Be sure that the Input Detection is in front of the Frame Draw. For some reason input isn't detected after the frame has been drawn.
+Q: Failing to load resource files?
+
+A: Make sure that you refer to the resource directory in the same way in the code and in the ``--preload-file`` compiler argument. If you passed an absolute path to the compiler (e.g. ``C:\my_game\resources``) you'll have to use absolute paths in the code (e.g. ``"C:/my_game/resources/player.png"``), and if you passed a relative path to the compiler (e.g. ``..\resources``) you'll have to use relative paths in the code (e.g. ``"resources/player.png"``).
+
**Please, feel free to add here your FAQ/Issues to help others!!!**