-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (36 loc) · 1.13 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
34
35
36
<!DOCTYPE html>
<html lang="">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Terminal</title>
<link rel="stylesheet" type="text/css" href="css/style.css">
</head>
<body>
<div class="layer"></div>
<main class="main">
<div draggable='true' dropzone class="window__frame terminal inactive">
<div class="title__bar active">
<div class="traffic__lights">
<button class="traffic__light close oval"></button>
<button class="traffic__light minimize oval"></button>
<button class="traffic__light maximize oval"></button>
</div>
<div class="title">
<div class="icon"></div>
<h2 class="heading nowrap">ideveloper — -bash — 80x24</h2>
</div>
</div>
<div class="line">
<div class="shape"></div>
</div>
<div class="shadow"></div>
<pre class="wrap">
<code class="content"></code>
</pre>
</div>
</main>
<script src="js/text-window.js"></script>
<script src="js/active-window.js"></script>
</body>
</html>