Home

전화상담

문의하기

<!-- 텍스트만 - 버튼3개 -->

<style>

.fixed {

position: fixed;

bottom: 0px;

left: 0%;

width: 33.3%;

z-index: 999;

color: #fff;

background: black;

}

</style>


<style>

.fixed2 {

position: fixed;

bottom: 0px;

left: 33.3%;

width: 33.3%;

z-index: 999;

color: #fff;

background: red;

}

</style>


<style>

.fixed3 {

position: fixed;

bottom: 0px;

left: 66.6%;

width: 33.3%;

z-index: 999;

color: #fff;

background: blue;

}

</style>


<div class="fixed">

<table width="100%">

<tbody><tr>

<td style="padding: 10px 0px 0px 0px;" width="25%" align="center" onclick="location.href='https://appsweb.kr'";>

<p><font size=2>Home</font></p>

</td>

</tr>

</tbody>

</table>

</div>


<div class="fixed2">

<table width="100%">

<tbody>

<tr>

<td style="padding: 10px 0px 0px 0px;" width="25%" align="center" onclick="location.href='tel:123456789'";>

<p><font size=2>전화상담</font></p>

</td>

</tr>

</tbody>

</table>

</div>


<div class="fixed3">

<table width="100%">

<tbody>

<tr>

<td style="padding: 10px 0px 0px 0px;" width="25%" align="center" onclick="location.href='https://appsweb.kr/qna'";>

<p><font size=2>문의하기</font></p>

</td>

</tr>

</tbody>

</table>

</div>