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> <button>2</button> <button>3</button><br>
<button>4</button> <button>5</button> <button>6</button><br>
<button>7</button> <button>8</button> <button>9</button><br>
</form>
</body>
</html>
<!--
<input type="button">
- 단순한 푸시 버튼이다.
<button type="">
- 클릭 가능한 버튼을 나타낸다
- type에는 3가지가 있다. submit, reset, button
type을 지정하지 않으면 기본값으로 submit이 된다
-->
728x90
반응형