2022-04-05 웹 공통과제
소스코드
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>HTML연습문제_1</title>
</head>
<body>
<form method="post">
<label for="name">고객명 : </label>
<input type="text" name="name" id="name">
<br><br>
<label for="phone">전화번호 : </label>
<input type="tel" name="phone" id="phone">
<br><br>
<label for="email">E-mail : </label>
<input type="email" name="email" id="email">
<br><br>
<label for="pizza">피자선택 : </label>
<select name="pizza" id="pizza">
<option value="default">피자를 선택하세요</option>
<option value="1">치즈 퐁듀 파이어 미트</option>
<option value="2">블록버스터4</option>
<option value="3">글로벌 레전드4</option>
<option value="4">블랙앵거스 스테이크</option>
<option value="5">베스트 콰트로</option>
<option value="6">블랙타이거 슈림프</option>
</select><br>
<fieldset>
<legend>피자 사이즈</legend>
<input type="radio" name="size" value="S">Small<br><br>
<input type="radio" name="size" value="M">Medium<br><br>
<input type="radio" name="size" value="L">Large<br><br>
</fieldset>
<fieldset>
<legend>토핑 선택</legend>
<input type="checkbox" name="topping" value="bacon">베이컨<br><br>
<input type="checkbox" name="topping" value="cheese">치즈<br><br>
<input type="checkbox" name="topping" value="onion">양파<br><br>
<input type="checkbox" name="topping" value="mushroom">버섯<br><br>
</fieldset>
<label for="time">희망배송시간 : </label>
<input type="time" name="time" id="time">
<br><br>
<label for="request">배송시 요청사항 : </label>
<textarea name="request" id="request" rows="4" cols="20"></textarea>
<br><br>
<button>주문하기</button>
</form>
</body>
</html>
Author And Source
이 문제에 관하여(2022-04-05 웹 공통과제), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@w-hddnr18/2022-04-05저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)