-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
105 lines (96 loc) · 2.51 KB
/
index.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
95
96
97
98
99
100
101
102
103
104
105
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="/libs/font-awesome-4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div class="left">
<div class="dropdown">
<div>
<input type="text" placeholder="Search.." id="">
<ul class="database-list">
<li><i class="fa fa-plus" aria-hidden="true"></i> <i class="fa fa-database" aria-hidden="true"></i>
<span class="database-name">Database1</span>
<ul class="database-table-list">
<li class="table-view"><i class="fa fa-table" aria-hidden="true"></i>
<span id="table-name">Table 1</li>
</ul></li>
<li><i class="fa fa-plus" aria-hidden="true"></i><i class="fa fa-database" aria-hidden="true"></i>
<span class="database-name">Database2</span>
<ul class="database-table-list">
<li class="table-view"><i class="fa fa-table" aria-hidden="true"></i>
Table 2</li>
</ul></li>
<li></li>
<li></li>
<li></li>
</ul>
</div>
</div>
</div>
<div class="right">
<table id="database-header">
<tr>
<th>Structure</th>
<th>SQL</th>
<th>Search</th>
<th>Export</th>
<th>Import</th>
<th>Operations</th>
</tr>
</table>
<table id="database-table-header">
<tr>
<th>Browse</th>
<th>Structure</th>
<th>SQL</th>
<th>Insert</th>
<th>Search</th>
<th>Export</th>
<th>Import</th>
<th>Operations</th>
</tr>
</table>
<table>
<tr>
<th>Company</th>
<th>Contact</th>
<th>Country</th>
</tr>
<tr>
<td>Alfreds Futterkiste</td>
<td>Maria Anders</td>
<td>Germany</td>
</tr>
<tr>
<td>Centro comercial Moctezuma</td>
<td>Francisco Chang</td>
<td>Mexico</td>
</tr>
<tr>
<td>Ernst Handel</td>
<td>Roland Mendel</td>
<td>Austria</td>
</tr>
<tr>
<td>Island Trading</td>
<td>Helen Bennett</td>
<td>UK</td>
</tr>
<tr>
<td>Laughing Bacchus Winecellars</td>
<td>Yoshi Tannamuri</td>
<td>Canada</td>
</tr>
<tr>
<td>Magazzini Alimentari Riuniti</td>
<td>Giovanni Rovelli</td>
<td>Italy</td>
</tr>
</table>
</div>
</body>
<script type="text/javascript" src="jquery.min.js"></script>
<script type="text/javascript" src="script.js"></script>
</html>