-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
28 lines (28 loc) · 893 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>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>A PUBLIC SPACE ON THE WEB</title>
<link rel="stylesheet" href="scss/build/css/styles.css">
</head>
<body>
<main>
<h1>A PUBLIC SPACE ON THE WEB</h1>
<p>This is a self-editing website. Use the tools below to view, edit, create or delete files.</p>
<textarea id="editor" name="editor">File content shows up here</textarea>
<div class="flex-controls">
<label for="files">Show this file:
<select id="files" name="files"></select>
</label>
<div class="flex-btn">
<a href="#" class="btCreate">CREATE</a>
<a href="#" class="btUpdate">UPDATE</a>
<a href="#" class="btDelete">DELETE</a>
</div>
</div>
</main>
<script src="js/file_editor.js"></script>
</body>
</html>