how to navigate using my tabs on my site

Hello, I want to know how to use the site menu to direct to other site guides, example, HOME PAGE (index.html) for COMPANY (index2.html) for services (index3.html) for CONTACT (index4.html) because I’m doing this and ERROR always appears 404. Is there another way to do this, am I doing it wrong? Please help me, thank you, I’m sorry for English.

1 Like

please give the address of your site

it was generated via software? (some template, wordpress, joomla, or you did it manually)

use local HTML Links Hyperlinks

http://livetestesolutions.rf.gd/

i did it manually

@OxyDac said:
please give the address of your site

it was generated via software? (some template, wordpress, joomla, or you did it manually)

https://www.w3schools.com/html/html_filepaths.asp

use local HTML Links Hyperlinks

http://livetestesolutions.rf.gd/

i did it manually

OK :wink:

your code

<ul>
<li><a href="Index.html" title="Pgina Incial">Pgina Inicial</a></li>
<li><a href="index2.html" title="Empresa">Empresa</a></li>
<li><a href="http://livetestesolutions.rf.gd/index.html" title="Servios">Servios</a></li>
<li><a href="index3.html" title="Contato">Contato</a></li>
</ul>

new working code

<ul>
<li><a href="index.html" title="Pgina Incial">Pgina Inicial</a></li>
<li><a href="index2.html" title="Empresa">Empresa</a></li>
<li><a href="put some link here for page service and create this page" title="Servios">Servios</a></li>
<li><a href="index3.html" title="Contato">Contato</a></li>
</ul>

as you can see, you wrote a capital letter Index.html

unix based systems are case sensitive
so server treats it as a new file

also copy and paste your all code and validate it here

then correct errors