java,web study/5주차 (7월 29일~8월 4일)
frame 태그 연습
doublemetal
2013. 7. 29. 15:43
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Insert title here</title> <frameset cols="300,*"> <!-- 열 기준으로 프레임 분할 좌 300 우 여분 --> <frame src=".\coffee.html"> <frame src=".\mergeTb.html"> </frameset> </head> <body> </body> </html>