-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patheditor.html
More file actions
44 lines (44 loc) · 907 Bytes
/
editor.html
File metadata and controls
44 lines (44 loc) · 907 Bytes
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
39
40
41
42
43
44
<!DOCTYPE html>
<html>
<head>
<style>
body {
background-color: #333333;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
height: 100vh;
font-family: 'Courier New', monospace;
color: #39ff14;
}
#editor {
flex: 1;
padding: 10px;
resize: none;
border: none;
outline: none;
background-color: #333333;
color: #39ff14;
font-family: 'Courier New', monospace;
}
#submit {
background-color: #39ff14;
border: none;
color: #333333;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
}
</style>
</head>
<body>
<textarea id="editor"></textarea>
<button id="submit">Submit</button>
<script src="editor.js"></script>
</body>
</html>