-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
48 lines (38 loc) · 1.37 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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="http://cdn.tinymce.com/4/tinymce.min.js"></script>
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css">
<script src="http://code.jquery.com/jquery-1.11.3.min.js"></script>
<script src="http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js"></script>
<script src="js/easy.js"></script>
</head>
<body>
<div data-role="page" class="ui-body-b ui-body">
<div data-role="panel" id="myPanel">
<h2>Right Panel</h2>
<p>Options will be kept here</p>
</div>
<div data-role="header" style="overflow:auto;">
<div data-role="navbar" class="ui-body-b ui-body ui-no-shadow">
<ul>
<li><a href="#myPanel" data-icon="gear"></a></li>
<li><a href="#"><font size="4">Easy-Notes</font></a></li>
<li><a href="#" data-icon="search"></a></li>
</ul>
</div> <!-- navbar -->
</div> <!-- header -->
<!--<div data-role="main" class="ui-content" style="position:relative; left:10px; top:10px;">
</div> -->
<div data-role="main" class="ui-content">
<p> <strong>My Diary</strong></p>
<textarea></textarea>
</div>
<div data-role="footer">
<h1>Expositors</h1>
</div>
</div>
</body>
</html>