Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<table width="100%" bgcolor="green">
<tr>
<td id="wtd" width="50%" style="border:red 5px groove" onclick="wchg();">
test
</td>
<td width="50%" style="border:yellow 5px groove">
test2
</td>
</tr>
</table>
<script>
function wchg(){
document.getElementById('wtd').style.width = '10%';
}
</script>