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
|
<?php include("head.php"); ?> <style> #wrap2{width: 1200px; margin: 0 auto;text-align: center;} .company_logo { display: block; overflow: hidden; margin: 0 auto; width: 1200px; } .company_logo li { float: left; margin: 0 5.2px 10.4px; } .customeroffice_font{padding:17px 10px;font-weight:600;font-size:11pt;} .office_title{height:250px;margin-top:20px;margin-bottom:50px;} .office_title{background:url('http://mjsoft.co/html/millennium/img/customer/board_title/office_top_big.png') no-repeat;} </style> <div class="office_title">
</div> <div id="wrap2"> <div class="company_logo"> <? for($i=0;$i<439;$i++){ ?> <? if($i%6 == 0 ){ ?> <ul> <? } ?> <li><img src="http://mjsoft.co/html/millennium/img/product/company/<?=$i?>.gif" alt="로고"></li>
<? if($i%6 == 5){ ?> </ul>
<? } } ?>
</div> </div> <?php include("foot.php"); ?>
|