-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
37 lines (36 loc) · 1.07 KB
/
index.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<?php
include "php/header.php";
?>
<div class="container">
<div class="starter-template">
<div>
<div class="elem">
<h1>Таймер рабочего времени</h1>
<br>
<h2 id="elem-2">До конца рабочего дня осталось:</h2>
<br>
<table class="table">
<thead>
<tr>
<th colspan="2">Часы</th>
<th>Минуты</th>
<th colspan="2">Секунды</th>
</tr>
</thead>
<tbody>
<tr>
<td id="var1">00</td>
<td class="q">:</td>
<td id="var2">00</td>
<td class="q">:</td>
<td id="var3">00</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
<?php
include "php/footer.php";
?>