-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
56 lines (48 loc) · 1.38 KB
/
Copy pathindex.html
File metadata and controls
56 lines (48 loc) · 1.38 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<!DOCTYPE HTML>
<html>
<head>
<title>COMPANY</title>
<link rel="icon" href="favicon.ico">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class='container'>
<div class='box' id="box">
<div class="circle">
<canvas id="myCanvas"></canvas>
</div>
<div class="max-size min-size box inner-shadow">
<div class="timer">
<div class='h-33 text-center'>
<img src="img/logo-web.png" alt="TickTron">
<h1>COMPANY</h1>
</div>
<div class='h-33' style='padding:30px 20px 20px 20px;'>
<table class="w-100 text-center" cellspacing="2">
<tr>
<th width="25%" height="31.2px" id="days"></th>
<th width="25%" id="hours"></th>
<th width="25%" id="minutes"></th>
<th id="seconds"></th>
</tr>
<tr class='bt'>
<td>Day</td>
<td>Hour</td>
<td>Minute</td>
<td>Second</td>
</tr>
</table>
</div>
<div class='h-33 text-center'>
<br>
<br>
<strong>COMING SOON</strong>
</div>
</div>
</div>
</div>
</div>
<script src="js/script.js"></script>
</body>
</html>