Shoutbox

Html??? - Printable Version

-Shoutbox (https://shoutbox.menthix.net)
+-- Forum: MsgHelp Archive (/forumdisplay.php?fid=58)
+--- Forum: Skype & Technology (/forumdisplay.php?fid=9)
+---- Forum: Tech Talk (/forumdisplay.php?fid=17)
+----- Thread: Html??? (/showthread.php?tid=41300)

Html??? by love_spreads on 03-27-2005 at 03:42 PM

'ello all. I'm new to this HTML stuff and I can't get Dreamweaver MX to work so I'm going for the "make it myself with html" approach to a website. So far, I've made my background in PS6 and sliced it up. I've got a navigation bar at as either side as such, split into three rows to link you to other pages on the site that I want to load in the centre part of the page. This totals seven images, a link to home, link to gallery, link to animation, link to photographs, link to links, a spare navigation one and the main background. PS6 has nicely given me the code for the images to line themselves up perfectly in a table. This is dandy, but how do I get the images to link to other pages? The <A href...> doesn't seem to work. If I put this code in it just won't show the image. Would I be better doing it myself in a table? If so, how do I do this? I've tried using the same pictures that PS6 has used in tables but they all go out of line and it looks messy. Somebody help! It's been driving my mad for the past few days!!! Thanks in advance.


RE: Html??? by Eljay on 03-27-2005 at 03:45 PM

<a href="url to website"><img src="url to image"></a>


RE: Html??? by M73A on 03-27-2005 at 03:47 PM

i'd highly recommend using Dreamweaver....its a lot easier and you can pick up the code as you go along:)

for a none template just create a large table with however many columns and rows so you can place things where you like on the site.....the templates are quite gd though:)


RE: Html??? by ayjay on 03-27-2005 at 03:52 PM

Like LJ says but make sure you set the image border to 0 in the img tag :P


RE: Html??? by .Roy on 03-27-2005 at 04:19 PM

if u want to make the links open in the middle. Use the html tags <iframe> Google it.


RE: Html??? by love_spreads on 03-27-2005 at 04:40 PM

This is the code PS6 has generated if it's any use to anyone who might be able to help...

<HTML>
<HEAD>
<TITLE>websitemainimage</TITLE>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
</HEAD>
<BODY BGCOLOR=#FFFFFF>
<!-- ImageReady Slices (websitemainimage.jpg) -->
<TABLE WIDTH=1014 BORDER=0 CELLPADDING=0 CELLSPACING=0>
    <TR>
        <TD ROWSPAN=2>
            <IMG SRC="images/websitehome.gif" WIDTH=203 HEIGHT=196></TD>
        <TD ROWSPAN=5>
            <IMG SRC="images/websitecentre.gif" WIDTH=642 HEIGHT=590></TD>
        <TD>
            <IMG SRC="images/websitephotographs.gif" WIDTH=169 HEIGHT=192></TD>
        <TD>
            <IMG SRC="images/spacer.gif" WIDTH=1 HEIGHT=192></TD>
    </TR>
    <TR>
        <TD ROWSPAN=2>
            <IMG SRC="images/websitelinks.gif" WIDTH=169 HEIGHT=197></TD>
        <TD>
            <IMG SRC="images/spacer.gif" WIDTH=1 HEIGHT=4></TD>
    </TR>
    <TR>
        <TD ROWSPAN=2>
            <IMG SRC="images/websitegallery.gif" WIDTH=203 HEIGHT=197></TD>
        <TD>
            <IMG SRC="images/spacer.gif" WIDTH=1 HEIGHT=193></TD>
    </TR>
    <TR>
        <TD ROWSPAN=2>
            <IMG SRC="images/websitespare.gif" WIDTH=169 HEIGHT=201></TD>
        <TD>
            <IMG SRC="images/spacer.gif" WIDTH=1 HEIGHT=4></TD>
    </TR>
    <TR>
        <TD>
            <IMG SRC="images/websiteanimations.gif" WIDTH=203 HEIGHT=197></TD>
        <TD>
            <IMG SRC="images/spacer.gif" WIDTH=1 HEIGHT=197></TD>
    </TR>
</TABLE>
<!-- End ImageReady Slices -->
</BODY>
</HTML>