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 pathtips.html
More file actions
executable file
·89 lines (78 loc) · 3.64 KB
/
tips.html
File metadata and controls
executable file
·89 lines (78 loc) · 3.64 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
<!DOCTYPE html>
<html manifest="demo.manifest">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<title>Tips</title>
<link rel="apple-touch-icon" href="img/AppleIcon.png" />
<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>
TIPS
</h1>
</header>
<!-- /header -->
<div data-role="content">
<ul data-role="listview" data-theme="c" data-dividertheme="d" data-counttheme="e">
<li>
<img src="img/Windows.gif" alt="Windows" class="ui-li-icon" width="16" height="16" />
<a href="http://www.599cd.com/tips/windows/" rel="external"> Windows </a>
</li>
<li>
<img src="img/Excel.gif" alt="Excel" class="ui-li-icon" width="16" height="16" />
<a href="http://www.599cd.com/tips/excel/" rel="external"> Excel </a>
</li>
<li>
<img src="img/Word.gif" alt="Word" class="ui-li-icon" width="16" height="16" />
<a href="http://www.599cd.com/tips/word/" rel="external"> Word </a>
</li>
<li>
<img src="img/Access.gif" alt="Access" class="ui-li-icon" width="16" height="16" />
<a href="http://www.599cd.com/tips/access/" rel="external"> Access </a>
</li>
<li>
<img src="img/Frontpage.gif" alt="Frontpage" class="ui-li-icon" width="16" height="16" />
<a href="http://www.599cd.com/tips/frontpage/" rel="external"> FrontPage </a>
</li>
<li>
<img src="img/VisualBasic.gif" alt="VisualBasic" class="ui-li-icon" width="16" height="16" />
<a href="http://www.599cd.com/tips/vb/" rel="external"> Visual Basic </a>
</li>
<li>
<img src="img/Hardware.png" alt="Hardware" class="ui-li-icon" width="16" height="16" />
<a href="http://www.599cd.com/tips/hardware/" rel="external"> Hardware </a>
</li>
<li>
<img src="img/Misc.png" alt="Hardware" class="ui-li-icon" width="16" height="16" />
<a href="http://www.599cd.com/tips/misc/" rel="external"> Misc </a>
</li>
</ul>
</div>
<div 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" class="ui-btn-active">Tips</a></li>
<li><a href="index.html" id="blog" data-icon="custom" data-theme="b">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>
</div><!-- /footer -->
</div>
<!-- /page -->
</body>
</html>