-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
38 lines (33 loc) · 1.23 KB
/
index.html
File metadata and controls
38 lines (33 loc) · 1.23 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<title>TXTphone</title>
</head>
<body>
<main>
<h1>Welcome to TXTphone</h1>
<p>This website allows you to read and write any text file (.txt).</p>
<p>This website was created for smarthphone users.</p>
<!-- Create a new text file section -->
<h2>Create a text file (Optional, if you don't have one)</h2>
<input type="text" id="newFileName" placeholder="Enter file name (without .txt)">
<button id="createFileButton">Create File</button>
<br><br>
<!-- File selection and content display section -->
<h2>Select a text file to read or write:</h2>
<input type="file" id="fileInput" accept=".txt">
<br><br>
<h2>Name of the file:</h2>
<input type="text" id="fileName" placeholder="No file selected">
<br><br>
<h2>File Content:</h2>
<textarea id="fileContent" rows="20" cols="80"></textarea>
<br><br>
<button id="saveButton">Save File</button>
</main>
</body>
<script src="script.js"></script>
</html>