Website URL
Other Information
So I have the main file (index.html) and i have in a folder an other file register.php how I make a herf that goes to that sub-page .
Here is what I tried to do - <a href="int/index.php">Link</a>
So I have the main file (index.html) and i have in a folder an other file register.php how I make a herf that goes to that sub-page .
Here is what I tried to do - <a href="int/index.php">Link</a>
Please note that you can use HTML to format forum posts. So if you would like to share HTML as code, please make sure to wrap it in code tags.
The HTML link you created looks fine though. But as you can see, it points to the relative URL int/index.php
. If you want to point it to register.php
instead, you need to put register.php
in the href attribute.
This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.