I need a frame code for my site.
I want a frame code with the frame's where I can set a name.
Two frame's! (Left and right)
Thank you
I want a frame code with the frame's where I can set a name.
Two frame's! (Left and right)
Thank you
| Code: |
| <frameset cols="150,*">
<frame name="frame1" src="page1.htm" scrolling="no" longdesc="Menu" noresize> <frame name="frame2" src="page2.htm" scrolling="auto" longdesc="Title"> </frameset> |
| Code: |
| <a href="new.html" target="nameofframe">Click Here!</a> |
| martindecorte wrote: | ||
Do you mean something like this ?
Then you have to create the page1.html and page2.html files. You can also have a look at the HTML specification, to get all the informations you need about the frames: http://www.w3.org/TR/1999/REC-html401-19991224/present/frames.html |