-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
30 lines (30 loc) · 1.03 KB
/
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
29
30
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/5.1.0/css/bootstrap.min.css">
<title>Text Editor</title>
</head>
<body>
<div class="container my-5">
<h1 class="mb-5">Text Editor</h1>
<textarea class="form-control mb-5" placeholder="Enter Text" id="textbox"></textarea>
<div class="row mb-5">
<div class="col-md-6 mb-5">
<p>Save to File:</p>
<div class="input-group">
<input class="form-control" id="filename" placeholder="Enter Filename e.g. MyFile.txt">
<button class="btn btn-primary" onclick="saveFile();">Save</button>
</div>
</div>
<div class="col-md-6">
<p>Open from File:</p>
<input class="form-control" type="file" onchange="openFile(this.files[0]);">
</div>
</div>
<p>Developed by <a href="https://robertd.co.uk">Robert Dixon</a></p>
</div>
<script src="js/script.js"></script>
</body>
</html>