Welcome guest. Before posting on our computer help forum, you must register. Click here it's easy and free.

Author Topic: I'm having a problem with exiting my frameset  (Read 2422 times)

0 Members and 1 Guest are viewing this topic.

keytone

    Topic Starter


    Starter

    I'm having a problem with exiting my frameset
    « on: June 21, 2010, 07:21:35 AM »
    I'm ning in the right  not sure if I'm posting in the right place, but here's my trouble.
    I'm fairly new and set up a framset. It works great but I don't know how to link back to the index.html
    I don't know where to put the button. the 3 panes ( top, menu, and main ) work fine, I think.  :-\

    I have a dir called "vac" and it contains 3 dirs(v1, v2, v3) and the frameset page. Each subdir of vac contains that window's opening page which is referenced by the frameset page.

    The framset page is http://mountaindream.freeoda.com/famphotos/vac/vacframeset1.html

    here is the code:

    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
     <title></title> </head>
     <frameset rows="65,*">
       <frame src="/famphotos/vac/v1/header1.html" name="top" noresize>   
     <frameset cols="220,*">       
       <frame src="/famphotos/vac/v2/v2pg1.html" name="menu" noresize>     
       <frame src="/famphotos/vac/v3/v3opener.html" name="main"noresize>   

     </frameset>
     </frameset>
     <noframes>
    <body>
    </body>
     </noframes>
     </html>

    I've tried help tutorials, but don't find the answer. Maybe it's so simple that I can't see it

    Thanks very much for any help with this!
    John

    kpac

    • Web moderator


    • Hacker

    • kpac®
    • Thanked: 184
      • Yes
      • Yes
      • Yes
    • Certifications: List
    • Computer: Specs
    • Experience: Expert
    • OS: Windows 7
    Re: I'm having a problem with exiting my frameset
    « Reply #1 on: June 21, 2010, 08:26:26 AM »
    Quote
    I'm ning in the right  not sure if I'm posting in the right place, but here's my trouble.
    Well there is a "Web design" forum...

    To be honest, I don't know why anyone uses frames at all for such simple websites.

    The code for a link to "break" out of a frame is as follows anyway.
    Code: [Select]
    <a href="index.html" target="_parent">Home</a>