Home |
전화상담 |
<!-- 텍스트만 - 버튼2개 -->
<style>
.fixed {
position: fixed;
bottom: 0px;
left: 0px;
width: 50%;
z-index: 999;
color: #fff;
background: black;
}
</style>
<style>
.fixed2 {
position: fixed;
bottom: 0px;
right: 0px;
width: 50%;
z-index: 999;
color: #fff;
background: red;
}
</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>