1.1 Case SIX: The background page of the website is displayed: 1.1.1 Requirements:
A website needs to have background page, background page design:
1.1.2 Analysis: 1.1.2.1 Technical Analysis:
"Frame tags for html"
框架标签:<frameset >,标签与body标签是冲突,有frameset就可以没有body.* 属性: * rows * cols使用<frame>标签,frame代表切分的每个部分.
1.1.2.2 Step Analysis:
"Step One" creates an HTML page
Step two divides the entire page into the top and bottom two sections.
Step three divides the bottom half of the page into two parts.
Step four adds some links to the left page.
"Step Five" click on the left link to display the contents of the page to the right.
1.1.3 Code implementation:
<frameset rows="15%,*"><frame src="top.html" name="top"/><frameset cols="15%,*"><frame src="left.html" name="left"/><frame src="right.html" name="right"/></frameset></frameset>
1.1.4 Summary: 1.1.4.1 special Character Tags:
Space:
<:<
:>
javaweb01-html Notes (Fri)