| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- <!DOCTYPE html>
- <HTML lang="ko">
- <head>
- <meta charset="utf-8">
- <title>UPRO</title>
- <meta name="viewport" content="user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, width=device-width">
- <meta name="format-detection" content="telephone=no">
- <link rel="stylesheet" type="text/css" href="/m/css/common.css">
- <link rel="stylesheet" type="text/css" href="/m/css/sub.css">
- <script type="text/javascript" charset="utf-8" src="/m/js/jquery-1.11.2.min.js"></script>
- <script type="text/javascript" charset="utf-8" src="/m/js/ui.js"></script>
- </head>
- <body>
- <!-- s : header -->
- <? include("../inc/inc_header.html"); ?>
- <!-- // e : header -->
- <!-- s : container -->
- <section id="container">
- <section id="visual" class="visual_customer">
- <h2>고객센터</h2>
- <p>쉽고 간편한 내차팔기, 견적산출,<br>최종 매각까지 어떤 수수료도 요구하지 않습니다.</p>
- </section>
- <section id="content">
- <h3 class="faq_tit">1:1 문의</h3>
- <table class="tbl_w">
- <tr>
- <td>
- <span class="td_tit">문의유형</span>
- <input type="radio" name="radiobutton" id="ask1"><label for="ask1">일반문의</label>
- <input type="radio" name="radiobutton" id="ask2"><label for="ask2">회원문의</label>
- <input type="radio" name="radiobutton" id="ask3"><label for="ask3">딜러가입문의</label>
- </td>
- </tr>
- <tr>
- <td><input type="text" class="inp_txt" style="width:100%;" placeholder="제목"></td>
- </tr>
- <tr>
- <td><input type="text" class="inp_txt" style="width:100%;" placeholder="이름"></td>
- </tr>
- <tr>
- <td><input type="text" class="inp_txt" style="width:100%;" placeholder="연락처"><span class="td_txt">(숫자만 입력)</span></td>
- </tr>
- <tr>
- <td>
- <input type="text" class="inp_txt" style="width:60%;" placeholder="이메일"> @
- <select style="width:35%;">
- <option value="">직접입력</option>
- </select>
- </td>
- </tr>
- <tr>
- <td><textarea cols="60" rows="8" style="height:180px" placeholder="내용"></textarea></td>
- </tr>
- <tr>
- <td>
- <span class="td_tit">첨부파일</span>
- <div class="filebox ty3">
- <input class="upload-name" value="">
- <label for="file_photo1">찾아보기</label>
- <input type="file" id="file_photo1" class="upload-hidden">
- </div>
- </td>
- </tr>
- </table>
- <div class="btn_center">
- <a href="#" class="button">문의하기</a>
- </div>
- </section>
- </section>
- <!-- e : container -->
- <!-- s : footer -->
- <? include("../inc/inc_footer.html"); ?>
- <!-- // e : footer -->
- </body>
- </html>
|