/home/mjc1/public_html/html/m/product.php


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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<? include("./include/header.php"); ?>
    <!--메인페이지 상단서브메뉴바-->
    <div class="sub_menu">
        <ul>
            <!--<li><a href="./product.php">제품소개</a></li>l
            <li><a href="./paper.php">용지주문</a></li>l
            <li><a href="./hardware.php">하드웨어</a></li>l
            <li><a href="./company.php">회사소개</a></li>-->
            <li><a href="./product.php">제품소개</a></li>l
            <li><a href="http://www.ebizmall.co.kr/b2bmall.php" target="_blank">B2B쇼핑몰</a></li>l
            <li><a href="http://www.ebizmall.co.kr/openmarket.php" target="_blank">오픈마켓</a></li>l
            <li><a href="http://www.freetalk.biz/" target="_blank">인공지능AI</a></li>
        </ul>
    </div>
    </div>
    


    <!--TAP MENU-->
    <div class="product" style="width:100%;text-align:center;">
        <p><img src="./images/product/product_title.png" style="max-width:100%;" alt="제품소개"></p>
        <p><a href="./product_millennium3.php"><img src="./images/product/product_category01.png" class="product_category" style="max-width:98%;margin-top:15px;" alt="천년경영3"></a></p>
        <p class="interval"></p>
        <p><a href="./product_smart.php"><img src="./images/product/product_category02.png" class="product_category" style="max-width:98%;" alt="스마트폰"></a></p>
        <p class="interval"></p>
        <p><a href="http://www.ebizmall.co.kr/b2bmall.php" target="_blank"><img src="./images/product/product_category_b2b.png" class="product_category" style="max-width:98%;" alt="b2b"></a></p>
        <p class="interval"></p>
        <p><a href="./product_tax.php"><img src="./images/product/product_category05.png" class="product_category" style="max-width:98%;" alt="전자계산서"></a></p>
        <p class="interval"></p>
        <p><a href="./product_pda.php"><img src="./images/product/product_category03.png" class="product_category" style="max-width:98%;" alt="pda"></a></p>
        <p class="interval"></p>
        <p><a href="./product_spos.php"><img src="./images/product/product_category04.png" class="product_category" style="max-width:98%;" alt="pos"></a></p>
        <p class="interval"></p>
        <p><a href="http://www.ebizmall.co.kr/openmarket.php" target="_blank"><img src="./images/product/product_category06.png" class="product_category" style="max-width:98%;margin-bottom:15px;" alt="오픈마켓"></a></p>
        <p class="interval"></p>
        <p><a href="http://www.freetalk.biz" target="_blank"><img src="./images/product/product_category_free.png" class="product_category" style="max-width:98%;margin-bottom:15px;" alt="프리톡"></a></p>
    </div>

<style>
.product{background:#c0d5e4;}
.product_category{margin:5px 0;}
</style>

<? include("./include/footer.php"); ?>



<script>
//탭메뉴


var slideIndex = 1;
showSlides(slideIndex);

function plusSlides(n) {
  showSlides(slideIndex += n);
}

function currentSlide(n) {
  showSlides(slideIndex = n);
}

function showSlides(n) {
  var i;
  var slides = document.getElementsByClassName("company");
  var dots = document.getElementsByClassName("demo");
  var captionText = document.getElementById("caption");
  if (n > slides.length) {slideIndex = 1}
  if (n < 1) {slideIndex = slides.length}
  for (i = 0; i < slides.length; i++) {
      slides[i].style.display = "none";
  }
  for (i = 0; i < dots.length; i++) {
      dots[i].className = dots[i].className.replace(" active", "");
  }
  slides[slideIndex-1].style.display = "block";
  dots[slideIndex-1].className += " active";
  captionText.innerHTML = dots[slideIndex-1].alt;
}

</script>