-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
79 lines (74 loc) · 3.08 KB
/
index.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
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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>Howard Live Oak</title>
<meta name="keywords" content="" />
<meta name="description" content="" />
<link href="http://fonts.googleapis.com/css?family=Arvo" rel="stylesheet" type="text/css" />
<link href="style.css" rel="stylesheet" type="text/css" media="screen" />
<script type="text/javascript">
<!--
var this_weekday_name_array = new Array("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday") //predefine weekday names
var this_month_name_array = new Array("January","February","March","April","May","June","July","August","September","October","November","December") //predefine month names
var this_date_timestamp=new Date() //get current day-time stamp
var this_weekday = this_date_timestamp.getDay() //extract weekday
var this_date = this_date_timestamp.getDate() //extract day of month
var this_month = this_date_timestamp.getMonth() //extract month
var this_year = this_date_timestamp.getYear() //extract year
if (this_year < 1000)
this_year+= 1900; //fix Y2K problem
if (this_year==101)
this_year=2001; //fix Netscape browsers - it displays the year as being the year 101!
var this_date_string = this_weekday_name_array[this_weekday] + ", " + this_month_name_array[this_month] + " " + this_date + ", " + this_year //concat long date string
//-->
</script>
</head>
<body>
<div id="wrapper">
<div id="wrapper2">
<div id="header" class="container">
<div id="logo" style="width: 458px">
<h1>Howard Live Oak</h1>
<p> </p>
</div>
<div id="menu" style="width: 401px">
<ul>
<li class="current_page_item"><a href="index.html">Home</a></li>
<li><a href="products.html">Products</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</div>
</div>
<!-- end #header -->
<div id="page">
<div id="content">
<div class="post">
<h2 class="title" style="font-size: 26px">
Consulting for Statistical Analysis and Software Development</h2>
<div style="clear: both;"> </div>
<div style="clear: both;"> <img alt="" height="203" src="images/HloGraphicGray.png" width="179" /></div>
<div style="clear: both;"> </div>
<div class="entry">
<p>Howard Live Oak, LLC is a small consulting company specializing in custom software for data management and statistical analysis. Typical clients are small companies and research teams that would like gain a better understanding of systems manifesting in observed datasets.</p>
</div>
</div>
<!-- end #post -->
</div>
<!-- end #content -->
<div style="clear: both;"> </div>
</div>
<!-- end #page -->
</div>
<!-- end #wrapper2 -->
</div>
<!-- end #wrapper -->
<div id="footer-content">
<div id="footer">
<p>Copyright ©Howard Live Oak, LLC. All rights reserved.</p>
</div>
</div>
<!-- end #footer -->
</body>
</html>