From 05e56192ac9bc2c28a196cf590353321c313233a Mon Sep 17 00:00:00 2001 From: Aleksandras Date: Tue, 15 Aug 2023 02:34:37 +0300 Subject: [PATCH] Clarification --- 1-js/02-first-steps/01-hello-world/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/02-first-steps/01-hello-world/article.md b/1-js/02-first-steps/01-hello-world/article.md index 35f82bf5d7..1f8e738ec9 100644 --- a/1-js/02-first-steps/01-hello-world/article.md +++ b/1-js/02-first-steps/01-hello-world/article.md @@ -73,7 +73,7 @@ Script files are attached to HTML with the `src` attribute: ``` -Here, `/path/to/script.js` is an absolute path to the script from the site root. One can also provide a relative path from the current page. For instance, `src="script.js"`, just like `src="./script.js"`, would mean a file `"script.js"` in the current folder. +Here, `/path/to/script.js` is an absolute path from the root folder to the required file. The root folder can be the root of the disk or the root of the site, depending on the site operating conditions. One can also provide a relative path from the current page. For instance, `src="script.js"`, just like `src="./script.js"`, would mean a file `"script.js"` in the current folder. We can give a full URL as well. For instance: