This repository was archived by the owner on Jun 26, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·128 lines (112 loc) · 4.73 KB
/
index.html
File metadata and controls
executable file
·128 lines (112 loc) · 4.73 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
<!DOCTYPE html>
<html manifest="demo.manifest">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<title>599CD Mobile</title>
<link rel="apple-touch-icon" href="img/AppleIcon.png" /> <!-- 114x114 -->
<link rel="apple-touch-startup-image" href="img/splash.png" /><!-- 320px x 460px -->
<!--<meta name="apple-mobile-web-app-capable" content="yes" />-->
<meta name="apple-mobile-web-app-status-bar-style" content="default" /><!-- content="black" | content="black-translucent" -->
<!--
<meta name="viewport" content = "width = device-width, initial-scale = 2.3, user-scalable = no" />
<meta name="viewport" content = "width = device-width, initial-scale = 2.3, minimum-scale = 1, maximum-scale = 5" />
-->
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.0a4.1/jquery.mobile-1.0a4.1.min.css" />
<script src="http://code.jquery.com/jquery-1.5.2.min.js"></script>
<script src="http://code.jquery.com/mobile/1.0a4.1/jquery.mobile-1.0a4.1.min.js"></script>
<link rel="stylesheet" href="css/navbar.css" />
</head>
<body>
<div data-role="page">
<header data-role="header" data-theme="b">
<h1>
599CD
</h1>
</header>
<!-- /header -->
<div data-role="content">
<ul data-role="listview" data-theme="c" data-dividertheme="d" data-counttheme="e">
<li data-role="list-divider">BLOG</li>
<li>
<img src="img/Blog.png" alt="Blog" class="ui-li-icon" />
<a href="site.html?rss=blog" rel="external"> Blog </a>
</li>
<li data-role="list-divider">FORUMS</li>
<li>
<img src="img/General.gif" alt="General" class="ui-li-icon" width="16" height="16" />
<a href=""> General </a>
</li>
<li>
<img src="img/Windows.gif" alt="Windows" class="ui-li-icon" width="16" height="16" />
<a href=""> Windows </a>
</li>
<li>
<img src="img/Internet.gif" alt="Internet" class="ui-li-icon" width="15" height="16" />
<a href=""> Internet </a>
</li>
<li>
<img src="img/Word.gif" alt="Word" class="ui-li-icon" width="16" height="16" />
<a href=""> Word </a>
</li>
<li>
<img src="img/Excel.gif" alt="Excel" class="ui-li-icon" width="16" height="16" />
<a href=""> Excel </a>
</li>
<li>
<img src="img/Access.gif" alt="Access" class="ui-li-icon" width="16" height="16" />
<a href=""> Access </a>
</li>
<li>
<img src="img/Powerpoint.gif" alt="Powerpoint" class="ui-li-icon" width="16" height="16" />
<a href=""> Powerpoint </a>
</li>
<li>
<img src="img/Frontpage.gif" alt="Frontpage" class="ui-li-icon" width="16" height="16" />
<a href=""> Frontpage </a>
</li>
<li>
<img src="img/VisualBasic.gif" alt="VisualBasic" class="ui-li-icon" width="16" height="16" />
<a href=""> VisualBasic </a>
</li>
<li>
<img src="img/HTML.gif" alt="HTML" class="ui-li-icon" width="16" height="16" />
<a href=""> HTML / Web Dev </a>
</li>
<li>
<img src="img/ASP.gif" alt="ASP" class="ui-li-icon" width="16" height="16" />
<a href=""> ASP </a>
</li>
<li>
<img src="img/QuickBooks.gif" alt="QuickBooks" class="ui-li-icon" width="16" height="16" />
<a href=""> QuickBooks </a>
</li>
<li>
<img src="img/Photoshop.gif" alt="Photoshop" class="ui-li-icon" width="16" height="16" />
<a href=""> Photoshop </a>
</li>
<li>
<img src="img/Outlook.gif" alt="Outlook" class="ui-li-icon" width="16" height="16" />
<a href=""> Outlook </a>
</li>
<li>
<img src="img/Digital.gif" alt="Digital Photo" class="ui-li-icon" width="16" height="16" />
<a href=""> Digital Photo </a>
</li>
</ul>
</div>
<footer data-role="footer" class="nav-glyphish-example">
<div data-role="navbar" data-theme="e" class="nav-glyphish-example" data-grid="d">
<ul>
<li><a href="tutorials.html" id="tuts" data-icon="custom" data-theme="b">Tutorials</a></li>
<li><a href="tips.html" id="tips" data-icon="custom" data-theme="b">Tips</a></li>
<li><a href="index.html" id="blog" data-icon="custom" data-theme="b" class="ui-btn-active">Blog</a></li>
<li><a href="account.html" id="acc" data-icon="custom" data-theme="b">Account</a></li>
<li><a href="more.html" id="more" data-icon="custom" data-theme="b">More</a></li>
</ul>
</div>
</footer><!-- /footer -->
</div>
<!-- /page -->
</body>
</html>