잡동사니에도 사랑을

[21.09.09] practice06 - 계산기 버튼 본문

JAVA_EE/HTML

[21.09.09] practice06 - 계산기 버튼

luvforjunk 2021. 9. 9. 17:37
728x90
반응형

<!DOCTYPE html>

<html>

<head>

<meta charset="UTF-8">

<title>Insert title here</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>9</button><br>

</form>

</body>

</html>

 

<!-- 

<input type="button">

- 단순한 푸시 버튼이다.

 

<button type="">

- 클릭 가능한 버튼을 나타낸다

- type에는 3가지가 있다. submit, reset, button

  type 지정하지 않으면 기본값으로 submit 된다

-->

결과창

728x90
반응형