forked from tholman/zenpen
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
59 lines (49 loc) · 1.52 KB
/
index.html
File metadata and controls
59 lines (49 loc) · 1.52 KB
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
<!doctype html>
<html>
<head>
<!-- MISC/META -->
<title> ZenPen ~ Minimal Distraction, Maximim Zen </title>
<meta charset="utf-8">
<meta name="description" content="Zenpen - A minimal web based text editor, for the modern man.">
<!-- CSS -->
<link href='http://fonts.googleapis.com/css?family=Lora:400,700,400italic,700italic' rel='stylesheet' type='text/css'>
<link href="css/base.css" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
<link href="css/fonts.css" rel="stylesheet">
<!-- JS loading in footer -->
<style type="text/css">
.comment {
border: 1px solid #ddd;
border-radius: 3px;
padding: 4px;
}
</style>
</head>
<body class="yin">
<div class="text-options">
<div class="options">
<span class="no-overflow">
<span class="lengthen ui-inputs">
<button class="url useicons"></button>
<input class="url-input" type="text" placeholder="Type or Paste URL here"/>
<button class="bold">b</button>
<button class="italic">i</button>
<button class="underline">U</button>
<button class="quote">”</button>
</span>
</span>
</div>
</div>
<section>
<article contenteditable="true" class="content comment">
This is a comment that you can edit
</article>
</section>
<!-- JS -->
<script type="text/javascript" src="js/utils.js"></script>
<script type="text/javascript" src="js/editor.js"></script>
<script type="text/javascript">
zenpen();
</script>
</body>
</html>