-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
27 lines (25 loc) · 797 Bytes
/
index.html
File metadata and controls
27 lines (25 loc) · 797 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>
<head>
<title>
PinkWrite 99
</title>
<link rel="icon" href="favicon.ico">
<link rel="stylesheet" type="text/css" href="style.css" />
<script src="jquery-1.7.1.min.js"></script>
<script src="wordcount.js"></script>
<script src="filesave.js"></script>
</head>
<body>
<textarea id="writingArea" class="writingBox" rows="22" cols="82" onPaste="return false" onCut="return false" onDrag="return false" onDrop="return false" autocomplete=off placeholder="Write content here..."></textarea>
<br />
<br />
<span id="wordCount" class="wordCounter" >0</span><br />
<div id="result">
<br />
<textarea id="saveName" class="writingBox" rows="1" cols="3"></textarea><br />
<button type="button" class="darkButton" onclick="download()">Finish</button>
</div>
<br />
</body>
</html>