-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
28 lines (27 loc) · 888 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<title>Text Editor</title>
<link href='./style.css' rel='stylesheet'>
<link href='http://fonts.googleapis.com/css?family=Josefin+Slab:300,400' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Roboto:700,300,100,100italic' rel='stylesheet' type='text/css'>
</head>
<body>
<script src='./script.js'></script>
<div align=center>
<h1>Online Text Editor</h1>
<div align=left style='display:inline-block; font-size: 20px'>
File to Modify:<br>
<input id='fileInput' type='file' onchange='loadFile()'/><br>
<br>
File Name:<br>
<input type='text' id='fileName' onchange='updateFileName()'><br>
<br>
File Contents:<br>
<textarea id='editor' rows=15 cols=80></textarea><br>
<br>
<input type='button' onclick='downloadNewFile()' value="Download Updated File">
</div>
</div>
</body>
</html>