-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.html
32 lines (29 loc) · 1.15 KB
/
main.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/markdown-it/11.0.1/markdown-it.min.js"></script>
<script src="scripts.js"></script>
</head>
<style>
*{
color:white;
}
::-webkit-scrollbar {width: 6px; height: 4px; background: #7c7b7b; }
::-webkit-scrollbar-thumb { background-color: #000000; -webkit-border-radius: 2ex; }
</style>
<body>
<div style="display: flex;flex-direction: row;margin:2%">
<div style="width:50%;height:90vh;background-color:#454341;border:2px black solid;">
<textarea id="w3review" name="w3review" style="width:99%;height:89vh;background-color:#454341;" oninput="myFunction()">
</textarea>
<button style="width: 100%;height:30px;color:black;" onclick="copyToclip()">Copy to Clipboard</button>
</div>
<div style="width:50%;height:90vh;background-color: #454341;border:2px black solid;overflow-y: scroll;scrollbar-color: dark;">
<p id="demo" style="font-size: 20px;"></p>
</div>
</div>
</body>
</html>