ข้ามไปที่เนื้อหาหลัก

บทความ

การกำหนดแสดงแถบเลื่อน

ทดลองเขียนโปรแกรม <HTML> <HEAD> <TITLEโรงเรียนปากพะยูนพิทยาคาร:เทคโนโลยีสารสนเทศ</TITLE> </HEAD> <frameset rows ="40%,*" bordercolor = "red";> <frame src = http://www.pykschool.ac.th/html_ex/5_3.html noresize scrolling = "auto"> <frame src = http://www.pykschool.ac.th/html_ex/5_4.html noresize scrolling = "auto"> </frameset> </HTML> แสดงผลลลัพธ์
โพสต์ล่าสุด

การกำหนดช่องว่างในเฟรม

ทดลองเขียนโปรแกรม <HTML> <HEAD> <TITLEโรงเรียนปากพะยูนพิทยาคาร:เทคโนโลยีสารสนเทศ</TITLE> </HEAD> <frameset rows ="40%,*" bordercolor = "red";> <frame src = http://www.pykschool.ac.th/html_ex/5_3.html marginwidth = "60" marginheight = "30"> <frame src = http://www.pykschool.ac.th/html_ex/5_4.html marginwidth = "60" marginheight = "30"> </frameset> </HTML> แสดงผลลลัพธ์

การกำหนดสีเส้นแบ่งเฟรม

ทดลองเขียนโปรแกรม <HTML> <HEAD> <TITLEโรงเรียนปากพะยูนพิทยาคาร:เทคโนโลยีสารสนเทศ</TITLE> </HEAD> <frameset rows ="40%,*" bordercolor = "red";> <frame src = http://www.pykschool.ac.th/html_ex/5_3.html> <frame src = http://www.pykschool.ac.th/html_ex/5_4.html> </frameset> </HTML> แสดงผลลลัพธ์

การกำหนดไม่ให้แสดงเส้นแบ่งเฟรม

ทดลองเขียนโปรแกรม <HTML> <HEAD> <TITLEโรงเรียนปากพะยูนพิทยาคาร:เทคโนโลยีสารสนเทศ</TITLE> </HEAD> <frameset rows ="40%,*" frameborder = "no"> <frame src = http://www.pykschool.ac.th/html_ex/5_3.html> <frame src = http://www.pykschool.ac.th/html_ex/5_4.html> </frameset> </HTML> แสดงผลลลัพธ์

การสร้างเฟรมแนวตั้ง

ทดลองเขียนโปรแกรม <HTML> <HEAD> <TITLEโรงเรียนปากพะยูนพิทยาคาร:เทคโนโลยีสารสนเทศ</TITLE> </HEAD> <frameset cols =*,*> <frame src = http://www.pykschool.ac.th/html_ex/5_3.html> <frame src = http://www.pykschool.ac.th/html_ex/5_4.html> </frameset> </HTML> แสดงผลลลัพธ์

การสร้างเฟรมแนวนอน

ทดลองเขียนโปรแกรม <HTML> <HEAD> <TITLEโรงเรียนปากพะยูนพิทยาคาร:เทคโนโลยีสารสนเทศ</TITLE> </HEAD> <frameset rows =40%,*> <frame src = "http://www.pykschool.ac.th/html_ex/5_3.html"> <frame src = "http://www.pykschool.ac.th/html_ex/5_4.html"> </frameset> </HTML> แสดงผลลลัพธ์

การรวมเซลล์ในแนวตั้ง

ทดลองเขียนโปรแกรม <HTML> <HEAD> <TITLE>โรงเรียนปากพะยูนพิทยาคาร : การสร้างตาราง</TITLE> </HEAD> <BODY> <table border = "2" bgcolor = violet> <caption><b>สถิตินักเรียนที่จบการศึกษา</b></caption> <tr align = "center" bgcolor = "blue"> <tr> <td align = "center"rowspan = "2"> ปีการศึกษา 2555</td> <td>ชาย</td> <td>หญิง</td> </tr> <tr> <td>340 คน</td> <td>210 คน </td> </tr> <tr> <td align = "center"rowspan = "2"> ปีการศึกษา 2556</td> <td>ชาย</td> <td>หญิง</td> </tr> <tr> <td>320 คน</td> <td>220 คน</td> </tr> </table> </BODY> </HTML>