
<form action="https://~~~.cafe24.com/pwa/" method="get" name="contact" id="contact">
<input type="submit" value="보내기">
</form>

<form action="https://~~~.cafe24.com/pwa/" method="get" name="contact" id="contact">
<input type="text" name="nm"><label>한국이름</label>
<input type="submit" value="보내기">
</form>

name="study" // 둘다 name이 같다 (=둘 중 하나 택1 하므로)
<form action="https://~~~.cafe24.com/pwa/" method="get" name="contact" id="contact">
<p>
<input type="text" name="nm"><label>한국이름</label>
</p>
<p> <!-- 라디오버튼, 둘다 name이 같다(= 둘 중 하나 택1 하므로) -->
<input type="radio" name="study" value="react"><label>리액트</label>
<input type="radio" name="study" valuse="node"><label>노드</label>
</p>
<input type="submit" value="보내기">
</form>

<form action="https://~~~.cafe24.com/pwa/" method="get" name="contact" id="contact">
<p>
<input type="text" name="nm"><label>한국이름</label>
</p>
<p> <!-- 라디오버튼, 둘다 name이 같다(= 둘 중 하나 택1 하므로) -->
<input type="radio" name="study" value="react"><label>리액트</label>
<input type="radio" name="study" valuse="node"><label>노드</label>
</p>
<p>
<input type="text" name="hp[0]" max="3"> <!-- 010 -->
-
<input type="text" name="hp[1]" max="4"> <!-- 5678 -->
-
<input type="text" name="hp[2]" max="4"> <!-- 1234 -->
</p>
<input type="submit" value="보내기">
</form>

<form action="https://~~~.cafe24.com/pwa/" method="get" name="contact" id="contact">
<p>
<input type="text" name="nm"><label>한국이름</label>
</p>
<p> <!-- 라디오버튼, 둘다 name이 같다(= 둘 중 하나 택1 하므로) -->
<input type="radio" name="study" value="react"><label>리액트</label>
<input type="radio" name="study" valuse="node"><label>노드</label>
</p>
<p>
<input type="text" name="hp[0]" max="3"> <!-- 010 -->
-
<input type="text" name="hp[1]" max="4"> <!-- 5678 -->
-
<input type="text" name="hp[2]" max="4"> <!-- 1234 -->
</p>
<input type="image" src="./banner2.png" value="보내기">
</form>


<body>
<form action="https://~~~~.cafe24.com/pwa/" method="get" name="contact" id="contact">
<p><!-- 이름 인풋란 -->
<input type="text" name="nm" id="nm"><label for="nm">한국이름</label>
</p>
<p><!-- 라디오버튼 -->
<input type="radio" name="study" id="study0" value="react"><label for="study0">리액트</label>
<input type="radio" name="study" id="study1" valuse="node"><label for="study1">노드</label>
</p>
<p><!-- 전화번호 인풋란 -->
<input type="text" name="hp[0]" max="3"> <!-- 010 -->
-
<input type="text" name="hp[1]" max="4"> <!-- 5678 -->
-
<input type="text" name="hp[2]" max="4"> <!-- 1234 -->
</p>
<input type="image" src="./banner2.png" value="보내기">
</form>
</body>
연락처 컨텐츠 구현하기
제작 프로세스
① UI를 피그마로 제작
② CSS 요소 & 태그 요소를 구분(img svg 배경이미지 등) → 소스를 분리해 저장
③ 태그 에밋 컨펌 후, 구조완성 → 스타일적용 → 인터페이스(반응형 처리 등) 완성!!
④ 자바스크립트 부분 (최소한 사용)
⑤ 백엔드 작업 차례
(php파일/폼태그의 전송된 데이터를 sql로 DB테이블에 저장 & 성공여부 전달페이지 저장)

활성화 시 모습 (피그마, 따로 떼서 옆에 두기)

내가 작성한 테이블
피드백) 진짜 HTML 태그가 아니라, 폼태그 타입 속성을 써야 함

회사명 company string text not null(필수)
회사위치 loaction string select null
채용직무 position array checkbox not null(필수)
주력언어 ability array checkbox not null(필수)
담당자명 manager string text not null(필수)
연락처 call string text null
면접날짜 dday string date null
면접시간 dtime array select/text null
남기실말 message text textarea null
채용직무 position array checkbox not null(필수)
기업명 company string text not null(필수)
담당자명 manager string text not null(필수)
회사위치 loaction string text null
연락처 email string text null
사수여부 isBoss string text not null(필수)
면접날짜 dday string date null
남기실말 message text textarea null
li는 총 9개가 필요하다! (ul>li*9)

name & id = company인 < input > 태그
li>div.line>label+input[name=company]#company[required]
<!-- 회사명 -->
<li>
<div class="line"><label for=""></label>
<input type="text" name="company" id="company" required>
</div>
</li>
li>div.line>label{회사위치}+select[name=location]>option[value='지역명']*5{지역명}
<!-- 회사 위치 -->
<li>
<div class="line"><label for="">회사위치</label>
<select name="location" id="">
<option value="지역명">지역명</option>
<option value="지역명">지역명</option>
<option value="지역명">지역명</option>
<option value="지역명">지역명</option>
<option value="지역명">지역명</option>
</select>
</div>
</li>
li>div.line.otherLine>label{주력언어<span>중복선택가능</span>}
p>input[type=checkbox][name=ability[ $ ]][value="리액트,"노드 등"]+label{텍스트} // name=배열이므로[ $ ]
(input[type=checkbox][name=ability[$]]#ability$+lable[for=ability$])*5
<!-- 주력 언어 -->
<li>
<div class="line otherLine">
<strong>주력언어<span>중복선택가능</span></strong>
<p>
<input type="checkbox" name="ability[0]" id="ability0" value="react">
<lable for="ability0">리액트</lable>
<input type="checkbox" name="ability[1]" id="ability1" value="node">
<lable for="ability1">노드</lable>
<input type="checkbox" name="ability[2]" id="ability2" value="scss">
<lable for="ability2">php</lable>
<input type="checkbox" name="ability[3]" id="ability3" value="php">
<lable for="ability3">SCSS</lable>
<input type="checkbox" name="ability[4]" id="ability4" value="javascript">
<lable for="ability4">제이쿼리</lable>
</p>
</div>
</li>

<body>
<form action="http://~~~~.cafe24.com/pwa/" method="post" name="contact" id="contact">
<li>
<div class="line">
<input type="checkbox" name="position[0]" id="position0" value="frontend">
<label for="position0">프론트엔드</label>
<input type="checkbox" name="position[1]" id="position1" value="publisher">
<label for="position1">퍼블리셔</label>
<input type="checkbox" name="position[2]" id="position2" value="marketing">
<label for="position2">기획/마케팅</label>
<input type="checkbox" name="position[3]" id="position3" value="design">
<label for="position3">디자인</label>
</div>
</li>
<li>
<div class="line">
<input type="text" name="company" id="company" placeholder="기업명" requierd>
</div>
</li>
<li>
<div class="line">
<input type="text" name="manager" id="manager" placeholder="담당자명">
</div>
</li>
<li>
<div class="line">
<input type="text" name="loaction" id="loaction" placeholder="회사위치">
</div>
</li>
<li>
<div class="line">
<input type="text" name="email" id="email" placeholder="연락처" requierd>
</div>
</li>
<li>
<div class="line">
<input type="text" name="isBoss" id="isBoss" placeholder="사수여부">
</div>
</li>
<li>
<div class="line">
<input type="date" name="dday" id="dday" placeholder="면접날짜">
</div>
</li>
<li>
<div class="line">
<input type="textarea" name="message" id="message" placeholder="남기실말">
</div>
</li>
<input type="submit" value="제안하기">
</form>
</body>
