forked from Whoeza/css-turbopascal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.htm
67 lines (62 loc) · 2 KB
/
index.htm
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<!-- License: GPL3, original: https://github.com/Whoeza/css-turbopascal -->
<!DOCTYPE html>
<html>
<head>
<title>Timur Latypoff</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="layout.css">
<link rel="stylesheet" href="uxui.css">
<style>
body, textarea {
font-size: 14px;
}
</style>
</head>
<body>
<!-- TOP MENU -->
<nav class="menu">
<ul>
<li><span class="shortcut">F</span>ile</li>
<li><span class="shortcut">E</span>dit</li>
<li><span class="shortcut">S</span>earch</li>
<li><span class="shortcut">R</span>un</li>
<li><span class="shortcut">C</span>ompile</li>
<li><span class="shortcut">D</span>ebug</li>
<li><span class="shortcut">T</span>ools</li>
<li><span class="shortcut">O</span>ptions</li>
<li><span class="shortcut">W</span>indow</li>
<li><span class="shortcut">H</span>elp</li>
</ul>
</nav>
<!-- EDITOR -->
<div class="editor-space">
<fieldset class="frame">
<legend>latypoff.com</legend>
<textarea readonly="true">
Hi. I am Timur Latypoff,
a fintech entrepreneur
and a software developer
based in Cyprus.
* TakeprofitTech.com
* CoinPriceFeeds.com
* Souseki.limited
* Real-time finance, BTC/ETH
* Clojure <3
* Timur at Latypoff dot com
* twitter.com/Nlitened
</textarea>
</fieldset>
</div>
<!-- BOTTOM MENU -->
<footer class="menu">
<ul>
<li><span class="shortcut">F1</span> Help</li>
<li><span class="shortcut">F2</span> Save</li>
<li><span class="shortcut">F3</span> Open</li>
<li><span class="shortcut">Alt+F9</span> Compile</li>
<li><span class="shortcut">F9</span> Make</li>
<li><span class="shortcut">Alt+F10</span> Local menu</li>
</ul>
</footer>
</body>
</html>