-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex2.html
61 lines (44 loc) · 1.46 KB
/
index2.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<title>TEST</title>
<link href="js/lib/bootstrap/css/bootstrap.css" rel="stylesheet">
</head>
<body>
<!--BEGIN: MAIN CONTAINER -->
<div id="main_container_id">
<div class="row ">
<!--BEGIN : BOTTOM LEFT PART -->
<div class="col-md-8 col-md-offset-2 " id="leftBottom_id">
<div class="well" >
<b><p id="load_id">Loading.....</p></b>
<div class="table-responsive">
<table class="table" id="tab_list_id">
<thead>
<tr>
<th>#</th>
<th>city</th>
<th>name</th>
<th>country</th>
<th>company</th>
</tr>
</thead>
</table>
</div>
</div>
</div>
<!--END : BOTTOM LEFT PART -->
</div>
</div>
<!--END: MAIN CONTAINER -->
<script src="js/lib/jquery.js"></script>
<script src="js/lib/bootstrap/js/bootstrap.js"></script>
<script src="js/app/dataServer.js"></script>
<script src="js/app/app.js"></script>
</body>
</html>