* <body></body> : 중심으로 이 안에 작성
* <table></table> : 표생성 /border : 1(테두리 표시),0(테두리 제거) /width : 가로길이 
/height : 세로길이 /align : 화면상의 위치
* <tr></tr> : table안의 한 행을 나타냄
* <td></td> 혹은 <th></th> : 그 행의 열을 채워나간다 (차이 확인할 것)
* <% %> : java 소스 작성 
* out.write : java소스 안에서 사용하는 화면에 창띄우는 방법1
* out.println : java소스 안에서 사용하는 화면에 창띄우는 방법2


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<%@ page language="java" contentType="text/html; charset=EUC-KR"
    pageEncoding="EUC-KR"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=EUC-KR">
<title>Insert title here</title>
</head>
    <body>
        <h1>구구단</h1>
        <table border="1" width="300" height="400" align="left">
        <tr height="50">
          <th>2단</th>
          <th>3단</th>
          <th>4단</th>
          <th>5단</th>
          <th>6단</th>
          <th>7단</th>
          <th>8단</th>
          <th>9단</th>
        </tr>
        <%
            for(int x=1;x<10;x++){
                out.write("<tr>");
                for(int y = 2; y < 10; y++){
                    out.write("<td>"+y+"x"+x+"="+x*y+"<br></td>");    //td가 한행을 가로로 쭉표시
                }
                out.write("</tr>");    //tr은 다음행으로 넘어가
            }
        %>
        </table>
    </body>
</html>
cs



'* Programming > WEB' 카테고리의 다른 글

DB연동 데이터 입력  (0) 2016.09.08
Form(회원가입)  (0) 2016.09.08
Form(로그인창)  (0) 2016.09.08
기본 내장객체  (0) 2016.09.08
스크립트릿 특징  (0) 2016.09.08

+ Recent posts