inquiry.html 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. <!DOCTYPE html>
  2. <HTML lang="ko">
  3. <head>
  4. <meta charset="utf-8">
  5. <title>UPRO</title>
  6. <meta name="viewport" content="user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, width=device-width">
  7. <meta name="format-detection" content="telephone=no">
  8. <link rel="stylesheet" type="text/css" href="/m/css/common.css">
  9. <link rel="stylesheet" type="text/css" href="/m/css/sub.css">
  10. <script type="text/javascript" charset="utf-8" src="/m/js/jquery-1.11.2.min.js"></script>
  11. <script type="text/javascript" charset="utf-8" src="/m/js/ui.js"></script>
  12. </head>
  13. <body>
  14. <!-- s : header -->
  15. <? include("../inc/inc_header.html"); ?>
  16. <!-- // e : header -->
  17. <!-- s : container -->
  18. <section id="container">
  19. <section id="visual" class="visual_customer">
  20. <h2>고객센터</h2>
  21. <p>쉽고 간편한 내차팔기, 견적산출,<br>최종 매각까지 어떤 수수료도 요구하지 않습니다.</p>
  22. </section>
  23. <section id="content">
  24. <h3 class="faq_tit">1:1 문의</h3>
  25. <table class="tbl_w">
  26. <tr>
  27. <td>
  28. <span class="td_tit">문의유형</span>
  29. <input type="radio" name="radiobutton" id="ask1"><label for="ask1">일반문의</label>
  30. <input type="radio" name="radiobutton" id="ask2"><label for="ask2">회원문의</label>
  31. <input type="radio" name="radiobutton" id="ask3"><label for="ask3">딜러가입문의</label>
  32. </td>
  33. </tr>
  34. <tr>
  35. <td><input type="text" class="inp_txt" style="width:100%;" placeholder="제목"></td>
  36. </tr>
  37. <tr>
  38. <td><input type="text" class="inp_txt" style="width:100%;" placeholder="이름"></td>
  39. </tr>
  40. <tr>
  41. <td><input type="text" class="inp_txt" style="width:100%;" placeholder="연락처"><span class="td_txt">(숫자만 입력)</span></td>
  42. </tr>
  43. <tr>
  44. <td>
  45. <input type="text" class="inp_txt" style="width:60%;" placeholder="이메일"> @
  46. <select style="width:35%;">
  47. <option value="">직접입력</option>
  48. </select>
  49. </td>
  50. </tr>
  51. <tr>
  52. <td><textarea cols="60" rows="8" style="height:180px" placeholder="내용"></textarea></td>
  53. </tr>
  54. <tr>
  55. <td>
  56. <span class="td_tit">첨부파일</span>
  57. <div class="filebox ty3">
  58. <input class="upload-name" value="">
  59. <label for="file_photo1">찾아보기</label>
  60. <input type="file" id="file_photo1" class="upload-hidden">
  61. </div>
  62. </td>
  63. </tr>
  64. </table>
  65. <div class="btn_center">
  66. <a href="#" class="button">문의하기</a>
  67. </div>
  68. </section>
  69. </section>
  70. <!-- e : container -->
  71. <!-- s : footer -->
  72. <? include("../inc/inc_footer.html"); ?>
  73. <!-- // e : footer -->
  74. </body>
  75. </html>