doc01 = html`
<form method="post" action="https://postman-echo.com/post" target="_blank">
<fieldset id="orderInfo">
<legend> 주문 정보 </legend>
<label class="field" for="billingName">이름 : </label>
<input type="text" class="input-box" id="billingName" name="billingName">
<label class="field" for="billingTel">연락처 : </label>
<input type="text" class="input-box" id="billingTel" name="billingTel">
<label class="field" for="billingAddr">주소 : </label>
<input type="text" class="input-box" id="billingAddr" name="billingAddr">
</fieldset>
<fieldset id="shippingInfo">
<legend> 배송 정보 (<input type="checkbox" id="checkSame" name="sameChk">
<label for="sameChk" class="check">주문 정보와 같음</label>)</legend>
<label class="field" for="shippingName">이름 : </label>
<input type="text" class="input-box" id="shippingName" name="shippingName">
<label class="field" for="shippingTel">연락처 : </label>
<input type="text" class="input-box" id="shippingTel" name="shippingTel">
<label class="field" for="shippingAddr">주소 : </label>
<input type="text" class="input-box" id="shippingAddr" name="shippingAddr">
</fieldset>
<button type="submit" class="order">결제하기</button>
</form>
`