In my HTML code, I have a list element ID such as:
<li id="pageHome">
And, when I want to reference to it, I have:
<h1><a href="#!/pageHome" id="logo">Interior</a></h1>
This works fine, however, when I load my website, I noticed that when I want to go my home page, the link looks like this:
mywebsite.com/#!/pageHome
I don't think this looks professional. Is there anything that I can do such that anytime that I want to go to main page, it shows something like this instead?
mywebsite.com/pageHome
Interior
`"_ No you don't. `href="#pageHome"` should do it. – j08691 Dec 10 '14 at 16:10