+ 1
<frame> tag . I do not understand this tag Could you explain this tag with examples.
html
3 ответов
+ 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!
+ 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
+ 1
I have updated my answers to include two tutorial about responsive design. It is modern technique. hope help you to begin with.