Linked Questions
49 questions linked to/from What does "./" (dot slash) refer to in terms of an HTML file path location?
1
vote
6
answers
2k
views
what does "./" path specification means? [duplicate]
I have been reading through RequireJS
i dont get the difference between
define(["./cart", "./inventory"], function(cart, inventory) {...}
and
...
2
votes
2
answers
364
views
What's the difference between "./" and "../"? [duplicate]
What does ./ mean? I assume that it is used to search a path, but I am not sure if that is true. I know that, for example, in C# if I want to search a path I can ...
0
votes
1
answer
2k
views
Html <form action=./> [duplicate]
while I was looking through some code I found one form tag which is sending the information to './'
Here's what the code looks like:
...
1
vote
4
answers
452
views
Is there any difference between ./ and / in <script> src attribute? [duplicate]
Given the following project structure:
/root
/static
script.js
page.html
This will 'import' script.js, into the HTML ...
4
votes
4
answers
128
views
Can anyone explain in simple and easy words that what is the difference between ../ and ./ when including files? [duplicate]
As we know that ../ means one step back and / means the current place but i am confused about the ./ when working with my web site and found that. Can anyone explain ?
1
vote
1
answer
137
views
What does the decimal in the relative link path do? [duplicate]
Possible Duplicate:
What does “./” (dot slash) refer to in terms of an HTML file path location?
What is the purpose of the decimal in the following, widely used reference to an external css sheet. ...
-2
votes
2
answers
117
views
What does "./" (single period) means in html (e.g. <script src="./src/main.js"></script>) for file paths? [duplicate]
"../" - two period (e.g., src="../picture.jpg") means go up one folder.
...
-2
votes
2
answers
103
views
Why can I not get a picture of my image in this HTML document? [duplicate]
I have an assignment for my class, and it involves us creating a dummy website about anything using HTML and CSS. I learned the basics of HTML but this is something I don't understand...
On visual ...
0
votes
1
answer
90
views
"Folder Path" Why I can't go up folder to reach an index.html file [duplicate]
I got an error while trying to go back to a root folder (folder A) from child folder (folder B inside folder A)..
I am confused, because I am trying every way to solve the problem but still got an ...
-1
votes
1
answer
72
views
In Html when should you use ./ and when should you use / to include files [duplicate]
I am trying to include an image that is in a local folder. When I try to load it standalone(not served from a server) it breaks. When I load it from a server it has no problem. If both point to the ...
0
votes
1
answer
72
views
CSS proper style linking in html [duplicate]
I have the following file structure in my project:
app
html
index.html
css
style.css
the issue is that linking my style.css by the following wont work:
...
1
vote
1
answer
81
views
what is the difference between ./ and ../ when i use it to include a file? [duplicate]
What will the below lines of code ? How will they search for the cover.css file?
...
1
vote
0
answers
22
views
Adding File in HTML from Parent Directory using DOT Syntax [duplicate]
While working on a Node Project , I came across this
...
0
votes
0
answers
21
views
Why are there different ways to write href links to HTML files when using <a> tags? [duplicate]
Why do HTML links sometimes add ./ before HTML file destination, and sometimes not?
Example:
...
106
votes
6
answers
632k
views
How to give the background-image path in CSS?
My CSS file is in :
Project/Web/Support/Styles/file.css
My image is in :
Project/Web/images/image.png
I want this image in my ...