-
Notifications
You must be signed in to change notification settings - Fork 0
/
jquery.html
94 lines (83 loc) · 2 KB
/
jquery.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
94
<!DOCTYPE html>
<html>
<head><meta http-equiv="Content-Type" content="text/html; charset=us-ascii">
<title>Greenville Mobile</title>
<meta content="width=device-width, initial-scale=1" name="viewport" />
<link href="./allfiles/jquery.mobile-1.4.5.min.css" rel="stylesheet" />
<script src="./allfiles/jquery-1.11.3.min.js"></script>
<script src="./allfiles/jquery.mobile-1.4.5.min.js"></script>
<style type="text/css">body {
background-color: black;
width: 820px;
}
h1 {
color: white;
background-color: red;
margin-left: 1px;
font-size: 6pt;
}
footer {
color: white;
background-color: red;
margin-left: 1px;
font-size: 6pt;
}
.jsfooter {
color: white;
background-color: red;
margin-left: 1px;
font-size: 6pt;
}
.jsstyle {
color: white;
background-color: grey;
margin-left: 1px;
font-size: 6pt;
}
.jsstyle2 {
color: white;
background-color: black;
margin-left: 1px;
}
a:link {
color: black;
}
/* visited link */
a:visited {
color: black;
}
/* mouse over link */
a:hover {
color: black;
}
/* selected link */
a:active {
color: black;
}
.jsstyle3 {
font-size: 6pt;
color: white;
background-color: black;
margin-left: 1px;
}
</style>
</head>
<body bgcolor="black">
<div class="jsstyle2" data-role="page" id="pageone">
<div class="colorheader3" data-role="header">
<h1 width="150px">MyMobile Client</h1>
</div>
<div bgcolor="black" data-role="Content"><!--pMy Content Frame/p--></div>
<div class="ui-content jsstyle" data-role="main">
<div class="jsstyle3" data-role="navbar">
<ul>
<li><a data-icon="plus" href="products.html" target="body2">Products</a></li>
<li><a data-icon="info" href="news.html" target="body2">News</a></li>
<li><a data-icon="gear" href="research.html" target="body2">Research</a></li>
<li><a data-icon="search" href="search.html" target="body2">Search</a></li>
<li><a a="" data-icon="back" href="mobilehome.html" target="body2">Home</a></li>
</ul>
</div>
</div>
</body>
</html>