-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
32 lines (28 loc) · 933 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
29
30
31
32
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Text Editor Online</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#000000" />
<meta name="description" content="Make and edit Text File(.txt) Online" />
<link rel="stylesheet" href="css/styles.css" />
<link rel="icon" href="favicon/favicon.ico" sizes="any">
<link rel="apple-touch-icon" href="favicon/apple-touch-icon.png">
</head>
<body>
<script src="js/script.js"></script>
<h2>Text Editor Online</h2>
<p>Create or edit Text files(.txt) online</p>
<div class="container">
<div class="center">
<button class="button button5" onclick="createNewTextFile()">Create new Text File</button>
</div>
</div>
<div class="container">
<div class="center">
<button class="button button5" onclick="editTextFile()">Upload and edit Text File</button>
</div>
</div>
</body>
</html>