Follow along with the video below to see how to install our site as a web app on your home screen.
Бележка: This feature may not be available in some browsers.
<html>
<head>
<title>APTEIT</title>
</head>
<STYLE type="text/css">
table{counter-reset:section;}
.count:before
{
counter-increment:section;
content:counter(section);
}
</style>
<body>
<table border="1">
<tr>
<td class="count"></td>
<td>ggggg</td>
</tr>
<tr>
<td class="count"></td>
<td>oooooooo</td>
</tr>
<tr>
<td class="count"></td>
<td>Harry</td>
</tr>
<tr>
<td class="count"></td>
<td>Simon</td>
</tr>
<td class="count"></td>
<td>Maria</td>
</tr>
<tr>
<td class="count"></td>
<td>Victory</td>
</tr>
</table>
</body>
</html>
<!DOCTYPE HTML>
<html>
<head>
<meta charset="UTF-8">
<title>New Website</title>
<script>
var a = 0;
function counter(){
a++;
document.write('<a>' + a + '</a>');
}
</script>
</head>
<body>
<table width="200" border="1">
<tr>
<td><script>counter()</script></td>
<td> </td>
<td> </td>
</tr>
<tr>
<td><script>counter()</script></td>
<td> </td>
<td> </td>
</tr>
<tr>
<td><script>counter()</script></td>
<td> </td>
<td> </td>
</tr>
<tr>
<td><script>counter()</script></td>
<td> </td>
<td> </td>
</tr>
</table>
</body>
</html>