-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (25 loc) · 874 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
33
<html>
<head>
<title>flamingo</title>
<link href="main.css" rel="stylesheet">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.3/css/all.css" integrity="sha384-SZXxX4whJ79/gErwcOYf+zWLeJdY/qpuqC4cAa9rOGUstPomtqpuNWT9wdPEn2fk" crossorigin="anonymous">
</head>
<body>
<div class="titlebar">
<div class="title"><p>flamingo</p></div>
<div class="controls">
<i class="fas fa-window-close" id="close"></i>
<i class="fas fa-minus-square" id="min"></i>
<i class="fas fa-plus-square" id="max"></i>
</div>
</div>
<div class="wrap">
<div id="editor">
<textarea id="md-content" oninput="update()"></textarea>
<div id="html-content"></div>
</div>
</div>
<script src="controls.js"></script>
<script src="markdown.js"></script>
</body>
</html>