inquiry.html 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. <!DOCTYPE html>
  2. <HTML lang="ko">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <title>UPRO</title>
  7. <meta name="format-detection" content="telephone=no">
  8. <link rel="stylesheet" type="text/css" href="/css/common.css">
  9. <link rel="stylesheet" type="text/css" href="/css/sub.css">
  10. <script type="text/javascript" charset="utf-8" src="/js/jquery-1.11.2.min.js"></script>
  11. <script type="text/javascript" charset="utf-8" src="/js/jquery.jqtransform.js"></script>
  12. <script type="text/javascript" charset="utf-8" src="/js/ui.js"></script>
  13. </head>
  14. <body>
  15. <!-- s : header -->
  16. <? include("../include/inc_header.html"); ?>
  17. <!-- // e : header -->
  18. <section id="wrap">
  19. <section id="visual" class="visual_customer">
  20. <h2>고객센터</h2>
  21. <p>쉽고 간편한 내차팔기, 견적산출, 최종 매각까지 어떤 수수료도 요구하지 않습니다.</p>
  22. </section>
  23. <section id="content">
  24. <ul class="location">
  25. <li><a href="/" class="home">홈</a></li>
  26. <li><span class="depth1">고객센터</span></li>
  27. <li><span class="depth2">1:1 문의</span></li>
  28. </ul>
  29. <h3 class="customer_tit">1:1 문의</h3>
  30. <table class="tbl_h">
  31. <colgroup>
  32. <col width="18%">
  33. <col width="*">
  34. </colgroup>
  35. <tr>
  36. <th>문의유형</th>
  37. <td>
  38. <span class="check_wrap"><input type="radio" name="radiobutton" id="ask1"><i></i><label for="ask1">일반문의</label></span>
  39. <span class="check_wrap"><input type="radio" name="radiobutton" id="ask2"><i></i><label for="ask2">회원문의</label></span>
  40. <span class="check_wrap"><input type="radio" name="radiobutton" id="ask3"><i></i><label for="ask3">딜러가입문의</label></span>
  41. </td>
  42. </tr>
  43. <tr>
  44. <th>제목</th>
  45. <td><input type="text" class="inp_txt" style="width:100%;"></td>
  46. </tr>
  47. <tr>
  48. <th>이름</th>
  49. <td><input type="text" class="inp_txt" style="width:40%;"></td>
  50. </tr>
  51. <tr>
  52. <th>연락처</th>
  53. <td><input type="text" class="inp_txt" style="width:40%;"> <span class="td_txt">숫자만 입력</span></td>
  54. </tr>
  55. <tr>
  56. <th>이메일</th>
  57. <td><input type="text" class="inp_txt" style="width:40%;"> @
  58. <span class="select" style="width:210px;">
  59. <select>
  60. <option value="">직접입력</option>
  61. </select>
  62. </span>
  63. </td>
  64. </tr>
  65. <tr>
  66. <th>내용</th>
  67. <td><textarea cols="80" rows="10" style="margin:10px 0;height:300px;"></textarea></td>
  68. </tr>
  69. <tr>
  70. <th>첨부파일</th>
  71. <td>
  72. <div class="filebox">
  73. <label for="file_photo">찾아보기</label>
  74. <input class="upload-name" value="">
  75. <input type="file" id="file_photo" class="upload-hidden">
  76. </div>
  77. </td>
  78. </tr>
  79. </table>
  80. <div class="btn_center">
  81. <a href="#" class="button">문의하기</a>
  82. </div>
  83. </section>
  84. </section>
  85. <!-- s : footer -->
  86. <? include("../include/inc_footer.html"); ?>
  87. <!-- // e : footer -->
  88. </body>
  89. </html>