티스토리 뷰
<body>
1.전송 <form action="url" method="get(조회)"> action목적지, method보내는 방식
(폼,인풋) ID <input type="text" name="userId">
PW<input type="password" name="userPw">입력값 name속성값과 짝
<input type="submit" value="로그인">
2.액션, 메소드, 네임 <form action="url" method="post(부여)"> 입력값 이하 안보임
3.초기화 <input type="reset">
ㅁ <input type="checkbox">짜장면 checked입력하면 기본값
ㅇ <input type="radio" name="gender">남 name값 제시해야 함**
버튼 <input type="button" value="버튼">
파일 <input type="file">
날짜 <input type="date">
시간 <input type="time">
날짜시간 <input type="datetime-local">
주 <input type="week">
숫자 <input type="number" min="0" max+"100">제한안하면 음수까지
범위 <input type="range">
메일 <input type="email">
검색 <input type="search">
확장 <textarea rows="30" cols="100">
4. <form>
<fieldset>틀
<legend>벤다이어그램 제목같은?</legend>
ㅁ <input type="checkbox" value="jjm" checked >
글씨눌러도 선택(라벨링) <lavel for="jjm">짜장면</label>
value 안적으면 사용자값이 전송
5. placeholder 칸안에 내용
required 유효성체크(입력여부만)
6. 선택하게 <select name="seachcondition">
분류 <option value="~">제목</option>
</fieldset>
</form>
</body>
------------------------------------------------------------------------------------------------
<style>
1.Tag h1 { -- color : blue }
h2 { color : orange }
2.ID #hOne { color : }
#good-color, #bad-color
3.class .p1 { }
4.basic [type = ] { }
[name = ] { background-color : }
input[name = ] { }
5.text p[name^ = ] { } 시작
p[name$ = ] { } 끝
p[class~ = ] { } 띄어쓰기
p[class* = ] { } 검색
6.자손
div>h2 { }
ul li { }
div>ul>li { }
</style>
--------------------------------------------------
하이퍼링크
<body>
기본값: 현재창 open(target="_self")
<a href="url" target="_blank">홈피 제목</a> 새탭열기
<a href="./"></a> 상대경로, 상위폴더도 가능(../)
<a href="image등" download></a> 열기가 아니라 다운로드
</body>
--------------------------------------------------------------------------
영역 단위
<body>
1.블록(세로) <div style = "border:1px solid></div>
2.텍스트(가로) <span style = ></span>
3.홈피박제(보안x) <iFrame src = "url" style="width:800px; height: 500px"></iframe>
4.PDF박제 <embed src = "./" type= width height></embed>
</body>
EdrawMind (formerly MindMaster) , a Versatile Mind Mapping Tool
Structure Your Knowledge, Information, and Ideas.
www.edrawsoft.com
마인드맵으로 정리하기
https://www.canva.com/ko_kr/graphs/mind-maps/
CSS Diner - Where we feast on CSS Selectors!
CSS Diner
A fun game to help you learn and practice CSS selectors.
flukeout.github.io