view dylan/goodindex.html @ 0:599d0315537d laserkard

[svn r1] initial import
author rlm
date Wed, 30 Dec 2009 02:01:25 -0500
parents
children
line wrap: on
line source
1 <html>
3 <head>
5 <link href="laserkard.css" rel="stylesheet" type="text/css" />
6 <script type="text/javascript">
7 var n = 0;
8 var a = new Array("#f00","#0f0","#00f")
9 function pory() {
10 var u = a[n%a.length]
11 var v = a[(n+1)%a.length]
12 document.body.style.backgroundColor = u;
13 document.body.style.color = v;
14 n++;
15 setTimeout("pory()",50);
16 }
17 </script>
18 <title> laserkard personal branding service </title>
20 </head>
23 <body onLoad="pory()">
26 <h1 class="laser">LaserKard</h1>
28 <h2 class="buy">Buy</h2>
29 <h2 class="contact">Contact</h2>
30 <h2 class="about">About Us</h2>
35 </body>
38 </html>