• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

anyone know HTML?

melissai_

Well-Known Member
Hey guys, i'm attempting to use indexhibit.com to build a site for my artwork and I was just wondering, if anyone knows how to link to an internal part of your site. Like on my home page, i want to link to my bio section of my site.

instead of using the < a href = "www.blahblah.com" > link < / a> set up, is there a way to not use the whole www . . . .thing?

thanks guys!
 
If the bio page lives in the same directory as your home page you can just name the page in the link:
< a href = "bio.html" > link < / a>

If it's in another directory it gets trickier. Here's a page that goes into details about relative links:
How to Make Relative Links
 
FYI - It'd be much easier to just use a CMS system so you can focus on the content and not worry about the actual "behind the scenes" side. HTML is pretty limited in what it can do so if you ever plan on introducing more "features" to your site then you'll need to learn a web language such as PHP.
 
Back
Top Bottom