I am creating a website and as I am kinda new with html, I want all of my homepage to be a background picture taking up all the page - with two logos on it - and each logo, if clicked, would direct you to it's respective page.
I know that you can mask pictures with boxes/circles/polygons and click on a specific are of the pic to go to a link and some other are for other link, as seen in this tutorial: http://www.tutorialspoint.com/html/html_image_links.htm
The thing is, this requires you put the picture in using the tag, and I did it using the css code, so I could use it as a background image:
<style type="text/css"> html { background: url('wp-content/uploads/2013/07/main_menuu-1024x1024.jpg') no-repeat center center fixed; -webkit-background-size: contain; -moz-background-size: contain; -o-background-size: contain; background-size: contain; } </style>
...and I like the [contain] attribute because it resizes the image in all views and devices automatically, so is there a workaround?
Thanks in advance.
Update:
A programer friend of mine told me "Use anchor / Display block / Position absolute Use left %, top % and width height % Yes You are to be a dick And use an absolute positioned anchor blah"
But he wasn't very clear about that.