Front-End Developer/HTML

    form 태그.

    흔히 로그인페이지의 아이디, 비밀번호처럼 입력된 값을 서버로 전송할 때 사용하는 글자를 넣는 곳 / 선택하는 것들을 form이라고 부른다. 폼이 정상적으로 작동하기 위해서는 유저로부터 정보를 입력할 수 있는곳을 먼저 만들어줘야겠지? 그 때 사용하는게 input이다. input 요소 안에 type 속성으로 태그모양을 다양하게 변경 가능하다. 인풋 type 목록들 text 입력한 text를 그대로 표현해주는 input button 누를 수 있는 간단한 버튼을 만드는 input password 마스크 처리된 text input search 검색 창으로 사용할 수 있는 input date 날짜를 입력할 때 사용할 수 있는 input time 시간을 입력할 때 사용할 수 있는 input range 슬라이드 바 형..

    Semantic HTML

    HyperText Markup Language It’s not a programming language alternative text(alt) is an important attribute. it allows search engines such as google chrome to actually know what is in the image, and by specifying the description of the image, we can also allow blind people to use a website.(They will have the screen reader read the alternative text so the description to them) some elements don’t n..