PLEASE HELP ME! Basicly I am trying to create an html page which will look like this, with each button linking to a different page. So far I have had some basic attempts with html myself and come up with this: View attachment Slide 1 - first part.txt View attachment Slide 1 - second part.txt View attachment Slide 1 - third part.txt In order to upload I had to split it into three sections which just shows how ridiculous the current html is. As you can probably tell I am no expert, and the whole thing is a mess. Can anybody help me sort it out, and tell me how to make it fill the whole of a browser screen, instead of always being the same size? Thanks!
sorry, didnt mean it as a job, just looking for a bit of help so i can do it myself. my budget is 0 :/
I can help out. I would not recommend making it full width, as some people like me use widescreen and then paragraphs end up being straight lines of text.
Try this CSS .leftDiv {float:left;width:500px;} .leftDiv p {font-size:14pt;font-weight:bold;color;#000;margin:20px 30px;} .leftDiv img {margin:20px 0 30px 0;} .rightDiv {float:right;width:400px;} .rightDiv img {margin:0;} HTML <div class="leftDiv"> <img src="img-3t.jpg" alt="Building Success Layer by Layer" /> <p>At 3T we …</p> <p>This flowchart...</p> </div> <div class="rightDiv"> <img src="img-blocks.jpg" alt="Block Image" /> </div>
HTML is not suitable for this kind of task. You are better off using Flash that can do the same thing with less hassle. But if you insist, you can make an image of the complete flowchart and use javascript to create an image map. Something similar to this: www.javascriptkit.com/howto/imagemap.shtml - Rufas
Stay away from Flash. Even Adobe is moving away from it. There's a reason Apple won't include Flash in it's computers. It's clunky and stupid.