실습문제 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>&nbsp;<button>2</button>&nbsp;<button>3</button><br>
<button>4</button>&nbsp;<button>5</button>&nbsp;<button>6</button><br>
<button>7</button>&nbsp;<button>8</button>&nbsp;<button>0</button><br>
</form>
</body>
</html>
 
cs


'WEB > TRAINNING' 카테고리의 다른 글

실습문제 3-3  (0) 2017.11.04
실습문제 3-2  (0) 2017.11.04
Open challenge 03. 컴퓨터 기술 소개 웹 페이지 : 구조화 및 웹 폼 작업  (0) 2017.11.04
실전문제 2-6  (0) 2017.11.04
실습문제 2-5  (0) 2017.11.04
Posted by 너래쟁이
: