Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- spring builder
- react Page
- springbatch chunk
- react link
- Spring DTO
- spring security
- react forwardRef
- JPA Update\
- react jsx if
- react quill custom
- Spring JPA
- Spring Entity
- 코드 중복제거
- springbatch
- react
- react Quill
- SpringBatch 스키마
- spring
- JPA Insert
- editor Quill
- Javascript
- react react-router-dom v6
- Spring Controller return
- Docker Windows 설치
- javascript 함수
- step 테이블
- javascrpit 기초
- javascript 기초
- 텍스트가 많은 경우
- Spring CORS
Archives
- Today
- Total
천천히 알아보는 코딩공부
html 자주쓰는 Tag 본문
button
<button>Log in</button>
input
- required maxlength : 글자 제한
- type : http://jun.hansung.ac.kr/cwp/htmls/HTML%20Input%20Types.html
- placeholder : 입력된게 없을 시 출력
HTML Input 요소의 타입들(types)
HTML Input 요소의 타입들(types) 이 장에서는 요소의 입력 타입(type) 들을 설명한다. HTML에서 사용할 수 있는 다른 input type은 다음과 같습니다.: Input Type: text 텍스트 입력(text input)위 한 줄의 입력 필
jun.hansung.ac.kr
<input required maxlength="15" type = "text" placeholder="what is your name?"/>
Input 버튼 -> 버튼과 차이점 html 의 기본 제한사항 사용가능
<form id = "login-form">
<input required maxlength="15" type = "text" placeholder="what is your name?"/>
<!-- <button>Log in</button> -->
<input type="submit" value="Log In"/>
</form>
a href
- 사이트 링크
<a href = "http://www.naver.com"> go to naver</a>
go to naver
span
- span태그 내부에 객체가 들어가면 그 객체의 크기만큼 공간이 할당이 됩니다.
- 출처 : https://coding-factory.tistory.com/189
<span class="box">대한사람 대한으로 길이 보전하세</span>
'HTML > 기초' 카테고리의 다른 글
html 목록 태그 (ul, ol, li) (0) | 2022.04.03 |
---|
Comments