-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathold_index.html
26 lines (25 loc) · 1.08 KB
/
old_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
<!DOCTYPE html>
<html>
<head>
<title>EpicNote</title>
<link rel="stylesheet" type="text/css" href="style/text.css">
<link rel="stylesheet" type="text/css" href="style/ui.css">
<script src="js/postinit.js"></script>
<script src="js/text.js"></script>
</head>
<body>
<h2 id="txtNoteTitle" contenteditable="true">Title</h2>
<div id="wrapperDiv">
<div class="btnDiv">
<button class="styleBtn" id="btnBold" mod="strong"><span style="font-weight:bold;">B</span></button>
<button class="styleBtn" id="btnItalic" mod="em"><span style="font-style:italic;">I</span></button>
<button class="styleBtn" id="btnUnderline" mod="u"><span style="text-decoration:underline;">U</span></button>
<button class="styleBtn" id="btnStrikethrough" mod="del"><span style="text-decoration:line-through;">S</span></button>
<button class="styleBtn" id="btnOl" mod="ol">OL</button>
<button class="styleBtn" id="btnUl" mod="ul">UL</button>
<div class="clrFlt"></div>
</div>
<div contenteditable="true" class="mainEditorDiv" id="mainEditor">This content can be edited!!!</div>
</div>
</body>
</html>