-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
27 lines (24 loc) · 733 Bytes
/
index.html
File metadata and controls
27 lines (24 loc) · 733 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>note</title>
<link rel="stylesheet" href="src/css/main.css" />
</head>
<body>
<div class="container">
<article id="main" data-title="lipsum" data-source="= Cara memakai
* Tekan {{{i}}} untuk mengedit
* Tekan escape untuk selesai mengedit
* Simpan halaman dengan ctrl+s">
<h1>Cara memakai</h1><ul><li> Tekan <tt>i</tt> untuk mengedit</li>
<li> Tekan escape untuk selesai mengedit</li>
<li> Simpan halaman dengan ctrl+s</li></ul>
</article>
<div id="editor" class="hide">
<textarea rows="1" id="editor__textarea"></textarea>
</div>
</div>
</body>
<script src="src/app.js"></script>
</html>