<frame> tag . I do not understand this tag Could you explain this tag with examples. | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

<frame> tag . I do not understand this tag Could you explain this tag with examples.

html

24th Mar 2020, 9:08 AM
Asatbek Xalimjonov
Asatbek Xalimjonov - avatar
3 Answers
+ 3
Hello, Basically, HTML Frames are used to divide the web browser window into multiple sections where each section can be loaded separately. A frameset tag is the collection of frames in the browser window. The <frame> tag defines one particular window (frame) within a <frameset>. Each <frame> in a <frameset> can have different attributes, such as border, scrolling, etc. It's not supported in HTML5. For example, a simple three-framed page would be: <framesetĀ cols="25%,50%,25%"> Ā Ā <frameĀ src="frame_a.htm"> Ā Ā <frameĀ src="frame_b.htm"> Ā Ā <frameĀ src="frame_c.htm"> </frameset> Also, don't forget that if you want to know more about it you can perfectly Google it, as the answer it's already here: ā€¢ https://www.w3schools.com/tags/tag_frame.asp ā€¢ https://www.google.com/amp/s/www.geeksforgeeks.org/html-frame-tag/amp/ ā€¢ https://www.javatpoint.com/html-frame-tag ā€¢ https://www.computerhope.com/jargon/h/html-frame-tag.htm ā€¢ https://www.google.com/amp/s/www.w3docs.com/learn-html/html-frame-tag.html All the best!
24th Mar 2020, 9:17 AM
Elisaveta
Elisaveta - avatar
+ 1
Don't learn frame, it is something 20 years ago. Learn flexbox and grid system instead. https://code.sololearn.com/W3gS00IGw160/?ref=app https://code.sololearn.com/W4CYCf5Izf4Q/?ref=app
24th Mar 2020, 9:22 AM
Gordon
Gordon - avatar
+ 1
I have updated my answers to include two tutorial about responsive design. It is modern technique. hope help you to begin with.
24th Mar 2020, 9:32 AM
Gordon
Gordon - avatar