실습문제 3-1
WEB/TRAINNING 2017. 11. 4. 19:23 |1. 9개의 버튼을 가진 다음 웹페이지를 작성하라.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | <!DOCTYPE html> <html> <head> <title>버튼을 만들자</title> </head> <body> <h3>버튼을 만들자</h3> <hr> <form> <input type="button" value="1"> <input type="button" value="2"> <input type="button" value="3"><br> <input type="button" value="4"> <input type="button" value="5"> <input type="button" value="6"><br> <input type="button" value="7"> <input type="button" value="8"> <input type="button" value="9"> </form> </body> </html> | cs |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>버튼이 있는 입력 폼</title></head> <body> <h3>버튼을 만들자</h3> <hr> <form name="fo"> <button>1</button> <button>2</button> <button>3</button><br> <button>4</button> <button>5</button> <button>6</button><br> <button>7</button> <button>8</button> <button>0</button><br> </form> </body> </html> | cs |