Web Programming Lecture 9

Main note

What Are IFrames

Definition

Segmenter for html pages

Syntax

<frameset rows="20%,70%,*">
	<frame src="header.html" name="header"><frameset cols="25%">
	<frame src="navigation.html"  name="navigation">
	<frame src="content.html" name="content">
</frameset>

here the rows attribute controls the height for each row

  • Rows: This attributes controls the row height. Here we used % of viewport height.

References

Information
  • date: 2024.08.07
  • time: 13:12