-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (32 loc) · 1.2 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
31
32
33
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="Content-Security-Policy" content="script-src 'self';">
<title>Text Editor</title>
<link rel="stylesheet" href="style.css"/>
<link href="https://fonts.googleapis.com/css2?family=Material+Icons"
rel="stylesheet">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@48,400,0,0" />
</head>
<body>
<div class="title-bar">
<span class="document-name" id="documentName">~</span>
<div class="menu-section">
<button id="openDocumentBtn">
<span class="material-symbols-outlined"> file_open </span>
</button>
<button id="createDocumentBtn">
<span class="material-symbols-outlined"> note_add </span>
</button>
<button id="saveBtn">
<span class="material-symbols-outlined"> save </span>
</button>
</div>
</div>
<main>
<textarea id="fileTextarea"disabled></textarea>
</main>
</body>
</html>