-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
100 lines (84 loc) · 2.55 KB
/
index.html
File metadata and controls
100 lines (84 loc) · 2.55 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<!-- Always force latest IE rendering engine (even in intranet) & Chrome Frame
Remove this if you use the .htaccess -->
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Heavy Connect </title>
<meta name="description" content="">
<meta name="author" content="Raimundo de Acacio Leonel Junior">
<meta name="viewport" content="width=device-width; initial-scale=1.0">
<!--IMPORTS-->
<link rel="stylesheet" type="text/css" href="css/style.css">
<script src="//code.jquery.com/jquery-1.11.2.min.js"></script>
<link rel="stylesheet" type="text/css" href="css/bootstrap/css/bootstrap.min.css">
<!--IMPORTS-->
<!-- Replace favicon.ico & apple-touch-icon.png in the root of your domain and delete these references -->
<link rel="shortcut icon" href="/favicon.ico">
<link rel="apple-touch-icon" href="/apple-touch-icon.png">
</head>
<body onload="startTime()">
<div id="wrapper">
<div id="top">
<div class="row">
<div class="col-xs-3 col-md-3">
<a href="#" id="home">HOME</a>
</div>
<div class="col-xs-3 col-md3">
</div>
<div class="col-xs-3 col-md3">
</div>
<div class="col-xs-3 col-md3">
TIME: <span id="time"> </span>
</div>
</div>
</div>
<div class="row">
<div class="col-xs-12 col-md-12">
<img src="img/logo.png" />
</div>
</div>
<div class="row">
<div class="col-xs-12 col-md-3">
</div>
<div class="col-xs-12 col-md-3">
<input type="button" value="Equipament" />
</div>
<div class="col-xs-12 col-md-3">
<input type="button" value="Taskflow" />
</div>
<div class="col-xs-12 col-md-3">
</div>
</div>
<div class="row">
<div class="col-xs-12 col-md-12">
<input type="button" value="Timekepper" />
</div>
</div>
<div class="row">
<div class="col-xs-12 col-md-12">
</div>
</div>
<footer>
<p>© Copyright by Heavy Connect</p>
</footer>
<script>
function startTime() {
var today=new Date();
var h=today.getHours();
var m=today.getMinutes();
var s=today.getSeconds();
m = checkTime(m);
s = checkTime(s);
document.getElementById('time').innerHTML = h+":"+m+":"+s;
var t = setTimeout(function(){startTime()},500);
}
function checkTime(i) {
if (i<10) {i = "0" + i}; // add zero in front of numbers < 10
return i;
}
</script>
</div>
</body>
</html>