-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
50 lines (43 loc) · 2.01 KB
/
index.html
File metadata and controls
50 lines (43 loc) · 2.01 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
39
40
41
42
43
44
45
46
47
48
49
50
<!DOCTYPE html>
<html lang="en" class="h-100">
<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" />
<link rel="icon" href="./images/auto_stories_black_24dp(1)(1).svg" type="image/png">
<link rel="stylesheet" type="text/css" href="https://unpkg.com/trix@2.0.0/dist/trix.css">
<link rel="stylesheet" href="./dist/css/index.css" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<script type="text/javascript" src="https://unpkg.com/trix@2.0.0/dist/trix.umd.min.js" defer></script>
<script src="./src/js/key/index.js" defer></script>
<title>Note</title>
</head>
<body class="d-flex h-100 text-center">
<div class="cover-container d-flex w-100 h-100 mx-auto flex-column">
<header class="mb-auto">
<div>
<h1 class="float-md-start mb-0 logo">Note</h1>
<nav class="nav nav-masthead justify-content-center float-md-end">
<a class="nav-link fw-bold py-1 px-0 active" id="keyboard-link"
style="cursor: pointer;">Teksteditor</a>
<a class="nav-link fw-bold py-1 px-0" id="calculator-link" href="./imath.html"
style="cursor: pointer;">Ruteark</a>
</nav>
</div>
</header>
<main>
<div class="keyContainer mb-2">
<input id="input" type="hidden" name="content" class="input">
<trix-editor input="input" class="trix-content"></trix-editor>
</div>
</main>
<footer class="mt-auto text-black-75 mt-4">
<p>Text editor for writing
by
<a href="https://github.com/Allawi465" class="text-black">Allawi</a>.
</p>
</footer>
</div>
</body>
</html>