-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlayout.html
93 lines (91 loc) · 3.71 KB
/
layout.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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Tweet Jockey</title>
<link href="css/style.css" rel="stylesheet" type="text/css" />
<link rel="stylesheet" type="text/css" href="css/niftyCorners.css">
<link rel="stylesheet" type="text/css" href="css/niftyPrint.css" media="print">
<script type="text/javascript" src="http://code.jquery.com/jquery-1.4.2.js"></script>
<script type="text/javascript" src="js/nifty.js"></script>
<script type="text/javascript">
$(document).ready(function() {
if(!NiftyCheck())
return;
RoundedTop("div#header","#FFF","#8EC1DA");
RoundedBottom("div#footer","#FFF","#8EC1DA");
});
</script>
<script type="text/javascript">
function show(div){
document.getElementById(div).style.visibility="visible";
}
</script>
</head>
<body>
<div class="outer">
<div class="inner">
<div class="colmask leftmenu">
<div class="colleft">
<div class="col1">
<div id="header">
<img style="z-index:1000" src="images/logo.png" alt="Tweet Jocky"/>
</div>
<div class="colmask fullpage">
<div class="fullpage col1">
<div id="home">
this is home
</div>
<div id="settings">
<input type="checkbox" id="set_default" />
<label for="set_default"> Just give me the default</label>
</div>
<div id="faq">
this is faq
</div>
</div>
</div>
<div id="footer">
<table width="100%" height="50%" border="0">
<tr>
<td width="15%">
<img src="images/feed.png" width="12" height="12" alt="rss feed" />
<a href="#">RSS Feed</a>
</td>
<td width="15%">
<img src="images/facebook.png" width="12" height="12" alt="facebook" />
<a href="#">Facebook</a>
</td>
<td width="15%">
<img src="images/twitter.png" width="12" height="12" alt="twitter" />
<a href="#">Twitter</a>
</td>
<td width="55%" align="right">
Powered by <a href="#">Cadmus</a>
</td>
</tr>
</table>
<table width="100%" border="0">
<tr>
<td width="100%" align="right">
© 2010 <a href="#">Synergos Web Solutions, INC.</a>
</td>
</tr>
</table>
</div>
</div>
<div class="col2">
<div class="nav">
<ul>
<li><a href="#" onclick="show('home');">Home</a></li>
<li><a href="#" onclick="show('settings');">Settings</a></li>
<li><a href="#" onclick="show('faq');">FAQ</a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</body>
</html>