천천히 알아보는 코딩공부

html 자주쓰는 Tag 본문

HTML/기초

html 자주쓰는 Tag

고기고기물고기 2022. 3. 24. 03:53

button

    <button>Log in</button>

 

Document

 

 

input

 

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>

 

Document

 

a href

  • 사이트 링크
<a href = "http://www.naver.com"> go to naver</a>

 

go to naver

 

span

<span class="box">대한사람 대한으로 길이 보전하세</span>

 

 

'HTML > 기초' 카테고리의 다른 글

html 목록 태그 (ul, ol, li)  (0) 2022.04.03
Comments