바이오 대표

[HTML] <form> <label></label><input/></form>_예시)달력 본문

Front_end

[HTML] <form> <label></label><input/></form>_예시)달력

바이오 대표 2021. 8. 8. 15:30

* id는 body 안에 어떤 태그에든 넣을 수 있는 attribute 

  하나의 element 당 고유의 id  (unique identify) - 추후에 CSS를 이용해서 디자인을 할 때 고유 id를 이용할 수 있다. 

 

input type="data"

<!DOCTYPE html>  
<html lang="kr"> 
    <head>
        <title>HTML input Exercise</title>
    </head>
    <body>
        <form >
            <label for='website' >Website</label>
            <input id='website' required placeholder="Name" type="date"/>
            <input type="submit" value="Create Account"/>
        </form>
    </body>
</html>