-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathmenu.html
47 lines (46 loc) · 1.76 KB
/
menu.html
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
<HTML>
<HEAD>
<TITLE>Crowdsourced Home Page</TITLE>
<meta name="GENERATOR" content="Microsoft FrontPage Express 2.0">
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<link rel="icon" href="favicon.ico" type="image/x-icon">
<link rel="stylesheet" type="text/css" href="http://csshake.surge.sh/csshake.min.css">
<link rel="stylesheet" href="css/code128.css" type="text/css">
</HEAD>
<BODY>
<marquee>Busy learning MSBuild for I love it with all my heart</marquee>
<h3>The left-hand menu is under construction</h3>
<h4>Please check back soon</h4>
<h5>If you dare...</h5>
<!-- start image -->
<img src="http://www.animatedgif.net/underconstruction/anim0205-1_e0.gif" border="0" alt="Under construction" width="100%">
<img src="img/notepad4.gif" border="0" alt="Notepad mania..">
<img src="img/monika.gif" width="150" class="shake-slow shake-constant">
<!-- end image -->
<a href="http://zanstra.com/my/BarcodeClock.html" title="Click for useful clocks" style="color:black" target="_top">
<div id="bar128clock" class="barcode2" style="transform:rotate(-90deg);width:250px;height:100px;margin-top:85px;margin-left:-75px"></div>
</a>
<script src="js/code128.js"></script>
<script>
(function(divId)
{ var divElement;
function getTimeString()
{ var pad = function(n) { return n < 10 ? '0' + n.toString(10) : n.toString(10); }
, dt = new Date
;
return [pad(dt.getHours()), pad(dt.getMinutes()), pad(dt.getSeconds())].join(':')
}
function updateClock()
{ divElement.innerHTML = code128(getTimeString())
}
document.addEventListener("DOMContentLoaded", function(event)
{ divElement = document.getElementById(divId)
; updateClock()
; setInterval(updateClock, 1000)
}
)
}
)('bar128clock')
</script>
</BODY>
</HTML>