본문 바로가기

HTML&CSS

회원가입 form (type속성의 값들 실습)

form태그 type속성의 값들 실습

아래에 코드있어요!

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
</head>
<body>
    <h3>회원가입 form</h3>
    <!--속성 placeholder은 커서 올리기전에 흐릿하게 힌트-->
    <form>
        email : <input type="email" placeholder="id@host"><br>
        <!--이메일 주소 유효성 확인은 자바스크립트로 할 수 있어요!-->
        홈페이지 : <input type="url" placeholder="http://"><br>
        전화번호 : <input type="tel" placeholder="010-1234-5678"><br>
        검색어 : <input type="search" placeholder="검색어"><br>
 
    </form>
</body>
</html>
http://colorscripter.com/info#e" target="_blank" style="color:#4f4f4ftext-decoration:none">Colored by Color Scripter
http://colorscripter.com/info#e" target="_blank" style="text-decoration:none;color:white">cs

'HTML&CSS' 카테고리의 다른 글

HTML 문서에 CSS 스타일 시트 만드는 방법들  (0) 2020.03.05
CSS 로 예쁘게~!  (0) 2020.03.05
form에 사용된 숫자 입력  (0) 2020.03.05
form에 사용된 시간 날짜 요소  (0) 2020.03.05
<form> 요소 종류들  (0) 2020.03.05