39 lines
1.5 KiB
PHP
39 lines
1.5 KiB
PHP
<?php
|
|
// 연혁 페이지
|
|
include_once('../../../../common.php');
|
|
include_once(G5_THEME_PATH.'/head.php');
|
|
|
|
$skin_url = G5_THEME_URL . '/skin/page/history';
|
|
?>
|
|
<!DOCTYPE html>
|
|
<html lang="ko">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width,initial-scale=1">
|
|
<title>연혁 | 레이저월드</title>
|
|
<script src="https://cdn.tailwindcss.com"></script>
|
|
<link rel="stylesheet" href="<?php echo $skin_url; ?>/css/style.css?v=1">
|
|
</head>
|
|
<body class="bg-gray-100">
|
|
<main class="min-h-screen flex items-start justify-center py-12 px-4">
|
|
<article class="w-full max-w-5xl bg-white rounded-2xl shadow-lg p-6 md:p-12 fade-in">
|
|
<header class="text-center mb-6">
|
|
<h1 class="text-2xl md:text-3xl font-bold">회사 연혁</h1>
|
|
</header>
|
|
|
|
<section class="prose text-gray-700">
|
|
<ul class="list-disc pl-5">
|
|
<li><strong>1984</strong> - 월간 금형·공구 창간 (한국금형공업협동조합)</li>
|
|
<li><strong>1991</strong> - (주)한국산업정보센타 설립</li>
|
|
<li><strong>1993</strong> - 월간 레이저기술 창간</li>
|
|
<li><strong>2025-09-03</strong> - (주)레이저월드 설립</li>
|
|
</ul>
|
|
|
|
<p class="mt-4">지속적인 콘텐츠 축적과 산업 네트워크를 바탕으로 전문 미디어로 성장해 왔습니다.</p>
|
|
</section>
|
|
</article>
|
|
</main>
|
|
<script src="<?php echo $skin_url; ?>/js/script.js?v=1" defer></script>
|
|
</body>
|
|
</html>
|