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
|
<?php
$dir = "."; include_once($dir."/_common.php"); include('./include/header.php');
?>
<style> .sitemap {width:1200px;margin:0 auto;} .sitemapSection {width:100%;margin:50px 0 0;} .sitemapSection td {padding:0 20px;vertical-align:top;} .sitemapSection td dl {border-top:2px solid #2d71c4;} .sitemapSection td dt {height:35px;line-height:35px;font-size:14px;font-weight:600;text-align:center;border-bottom:1px solid #c3c3c3;} .sitemapSection td dd {padding-left:15px;height:27px;line-height:27px;font-size:12px;border-bottom:1px solid #e7e7e7;} </style> <div class="sitemap"> <table class="sitemapSection"> <colgroup> <col><col> </colgroup> <tr> <td> <dl> <dt>매입매출관리</dt> <dd>기초등록</dd> <dd>거래처관리</dd> <dd>상품관리</dd> <dd>매입관리</dd> <dd>매출관리</dd> <dd>매입원장</dd> <dd>매출원장</dd> <dd>거래명세표</dd> <dd>전자계산서</dd> <dd>SMS전송</dd> </dl> </td> <td> <dl> <dt>회원메뉴</dt> <dd>공지사항</dd> <dd>로그인</dd> <dd>회원가입</dd> </dl> </td> </tr> </table> </div>
<?php include('./include/footer.php'); ?>
|