1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
<?php header('Content-Type: text/html; charset=utf-8'); $dir = "."; include_once($dir."/common.php"); //include("header_intro.php"); ?>
<div class="main_section"> <h2>사용프로그램 선택</h2> <article class="strength"> <ul> <li>* <span class="blue bold">수주처</span>에서 사용하는 프로그램을 선택해주세요.</li> <li>* <span class="blue bold">수주처</span>의 사용프로그램을 문의하여 정확히 선택하셔야 합니다.</li> </ul> </article>
<article class="tel" style='width:50%;margin:0 auto;background:#5A9CEC;color:white;' onclick="document.location.href='http://mjsoft.co/onlinecs/mobile';"> <div>천년경영 CS</div> </article> <br> <article class="tel" style='width:50%;margin:0 auto;background:#012D6A;color:white;' onclick="document.location.href='http://ord.mjsoft.co/mobile3';"> <div>천년경영3 CS</div> </article> </div>
<?php //include("footer.php"); ?>
|