Is there an html code for?

Could someone please help me with a simple XHTML code with HTML frames?

  • Why won’t this appear on my IE browser? If I use the DOCTYPE as transitional or strict I won’t be able to use frames. Test.html <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml… <html> <head> <title>simple document</title> </head> <body> <frameset cols="50%,50%"> <frame src="Frame1.html"> <frame src="Frame2.html"> </frameset> </body> </html> Frame1.html <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml… <head> <title>Frame 1<title> </head> <body> <p>Frame 1</p> </body> </html> Frame2.html Similar to Frame1.html

  • Answer:

    ok.... well in XHTML the <frame> tag must be properly closed. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-… <html> <frameset cols="25%,50%,25%"> <frame src="frame_a.htm" /> <frame src="frame_b.htm" /> <frame src="frame_c.htm" /> </frameset> </html> and follow that info... your tags have to be closed properly... http://webdesign.about.com/od/frames/a/aaframestips.htm http://www.yourhtmlsource.com/accessibility/xhtmlexplained.html check out the links. if you need anything more...just email me.

Space Invader101 at Yahoo! Answers Visit the source

Was this solution helpful to you?

Related Q & A:

Just Added Q & A:

Find solution

For every problem there is a solution! Proved by Solucija.

  • Got an issue and looking for advice?

  • Ask Solucija to search every corner of the Web for help.

  • Get workable solutions and helpful tips in a moment.

Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.