How to write the parent and child directories of HTML relative paths

How to write the parent and child directories of HTML relative paths
How to indicate the parent directory
../ represents the parent directory of the source file, ../../ represents the parent directory of the source file, and so on.
Assume that the path to info.html is: c:\Inetpub\wwwroot\sites\blabla\info.html
Assume that the path to index.html is: c:\Inetpub\wwwroot\sites\index.html
The code to add a hyperlink to index.html in info.html should be written like this:
<a href = "../index.html">index.html</a>
Assume that the path to info.html is: c:\Inetpub\wwwroot\sites\blabla\info.html
Assume that the path of index.html is: c:\Inetpub\wwwroot\index.html
The code to add a hyperlink to index.html in info.html should be written like this:
<a href="../../../index.html">index.html</a>
Assume that the path to info.html is: c:\Inetpub\wwwroot\sites\blabla\info.html
Assume that the path to index.html is: c:\Inetpub\wwwroot\sites\wowstory\index.html
The code to add a hyperlink to index.html in info.html should be written like this:
<a href = "../wowstory/index.html">index.html</a>
How to indicate that a sub-directory references a file in a sub-directory? Simply write the path of the sub-directory file. Assume that the path to info.html is: c:\Inetpub\wwwroot\sites\blabla\info.html Assume that the path to index.html is: c:\Inetpub\wwwroot\sites\blabla\html\index.html The code to add a hyperlink to index.html in info.html should be written like this: <a href = "html/index.html">index.html</a>
Assume that the path to info.html is: c:\Inetpub\wwwroot\sites\blabla\info.html
Assume that the path to index.html is: c:\Inetpub\wwwroot\sites\blabla\html\tutorials\index.html
The code to add a hyperlink to index.html in info.html should be written like this:
<a href = "html/tutorials/index.html">index.html</a>

<<:  Docker View the Mount Directory Operation of the Container

>>:  How to copy MySQL table

Recommend

Problems and solutions of using TweenMax animation library in angular

I have nothing to do recently, so I tinker with C...

Example code for CSS columns to achieve two-end alignment layout

1. Going around in circles After going around in ...

HTML tags explained

HTML tags explained 1. HTML tags Tag: !DOCTYPE De...

HTML Tutorial: title attribute and alt attribute

XHTML is the basis of CSS layout. jb51.net has al...

jQuery implements accordion small case

This article shares the specific code of jQuery t...

Detailed explanation of the simple use of MySQL query cache

Table of contents 1. Implementation process of qu...

Experience of redesigning the homepage of TOM.COM

<br />Without any warning, I saw news on cnB...

Vue+echarts realizes stacked bar chart

This article shares the specific code of Vue+echa...

CenterOS7 installation and configuration environment jdk1.8 tutorial

1. Uninstall the JDK that comes with centeros fir...

Detailed explanation of the pitfalls of mixing MySQL order by and limit

In MySQL, we often use order by for sorting and l...

React example of how to get the value of the input box

React multiple ways to get the value of the input...

MySQL slow query pt-query-digest analysis of slow query log

1. Introduction pt-query-digest is a tool for ana...