File name
Commit message
Commit date
File name
Commit message
Commit date
File name
Commit message
Commit date
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1" />
<script src="http://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.12.4.min.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.css" />
<link rel="stylesheet" href="../../resources/css/reset.css">
<link rel="stylesheet" href="../../resources/css/style.css">
<link rel="stylesheet" href="../../resources/css/component.css">
<link rel="stylesheet" href="../../resources/css/common.css">
<link rel="stylesheet" href="../../resources/css/responsive.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.css" />
<style scoped>
footer {
width: 100%;
/* height: 300px; */
padding: 30px;
/* opacity: 0; */
/* display: none; */
position: relative;
bottom: 0px;
left: 0;
z-index: 56;
transition: all 0.5s;
background-color: #333;
}
/* 스크롤바 없애기 */
body {
-ms-overflow-style: none;
/* 인터넷 익스플로러 */
scrollbar-width: none;
/* 파이어폭스 */
}
::-webkit-scrollbar {
display: none;
}
#header {
position: fixed;
top: 0;
z-index: 3;
border-bottom: 1px solid #ced4da;
background-color: white;
}
#header .header .logo {
background: url(../../resources/img/component/logo-color.png) no-repeat;
width: 200px;
background-size: contain;
height: 25px;
}
#header .header nav li a {
color: #333;
}
html,
body {
position: relative;
height: 100%;
}
body {
background: #fff;
font-family: 'Pretendard';
font-size: 14px;
color: #000;
margin: 0;
padding: 0;
}
.swiper {
width: 100%;
height: 100%;
}
.swiper-slide {
text-align: center;
font-size: 18px;
background: linear-gradient(#f8f9fa, #fff, #fff);
display: flex;
justify-content: center;
align-items: center;
}
.swiper-slide img {
height: 356px;
display: block;
object-fit: cover;
}
.box-wrap p {
padding-top: 1rem;
font-size: 2rem;
}
.dropdown {
background-color: #fff !important;
}
</style>
<title>TAKENSOFT</title>
</head>
<body>
<div id="header"></div>
<div>
<div class=" text-area pb60 slide-section flex align-center" id="customized" style="height: 100vh;">
<div class="flex justify-between" style="gap: 10px; width: 100%;">
<div class="etc-wrap-title mb30">
<h1 class="mb20">고객을 만족시키는 맞춤형 컨설팅</h1>
<p>각 산업 영역에 대한 품부한 이해를 바탕으로 조직 규모, 자원 및 예산 등에 따라 최적화된 방법론을 적용하여 고객의 Vision을 실현 시킵니다.</p>
</div>
<div class="flex justify-between box-wrap" style="width: 100%; gap: 20px; ">
<div class="solution-ani">
<img src="../../resources/img/common/custom-img.png" alt="">
<p>상주시 데이터 활용 <br>기본계획 수립</p>
</div>
<div class="solution-ani">
<img src="../../resources/img/common/custom-img2.png" alt="">
<p>영천시 데이터 활용 <br>기본계획 수립</p>
</div>
<div class="solution-ani">
<img src="../../resources/img/common/custom-img3.png" alt="">
<p>포항테크노파크 SW융합클러스터 <br>2.0 데이터 품질관리 협력기관</p>
</div>
<div class="solution-ani">
<img src="../../resources/img/common/custom-img4.png" alt="">
<p>영천시 공공데이터 <br>품질관리</p>
</div>
</div>
</div>
</div>
<footer>
<div class="footer-wrap">
<div class="footer-img mb10">
<img src="../../resources/img/component/logo-w.png" alt="">
</div>
<hr>
<div class="footer-text pt10">
<div class="flex justify-between ">
<p>대표자 ) 임상현</p>
<p>FAX ) 053-811-1701</p>
</div>
<div class="flex justify-between">
<p>고객지원 ) 053-811-1700(평일9시~18시)</p>
<p>대표메일 ) [email protected]</p>
</div>
<p>주소 )본사: 경상북도 경산시 대학로280, 영남대학교 창업보육센터 신관 217호,218호,220호</p>
<p class="pl30">대구지사: 대구 수성구 알파시티1로 160 SW융합테크비즈센터 306호 (대흥동)</p>
</div>
<p class="copyright">© 2021.Takensoft.all rights reserved.</p>
</div>
</footer>
</div>
</body>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.js"></script>
<script>
$(document).ready(function () {
$("#btnHeadquarter").click(function () {
$("#btnHeadquarter").addClass('on');
$("#btnDaeguBranch").removeClass('on');
$("#contentDaeguBranch").hide();
$("#contentHeadquarter").show();
});
$("#btnDaeguBranch").click(function () {
$("#btnDaeguBranch").addClass('on');
$("#btnHeadquarter").removeClass('on');
$("#contentHeadquarter").hide();
$("#contentDaeguBranch").show();
});
});
$(function () {
$("#header").load("../layout/Header.html");
$("#footer").load("../layout/footer.html");
$("#footer").show();
});
</script>
</html>