-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
55 lines (52 loc) · 1.77 KB
/
index.html
File metadata and controls
55 lines (52 loc) · 1.77 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
51
52
53
54
55
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Terminal</title>
<link rel="stylesheet" href="style.css">
<link rel="shortcut icon" href="img/terminal.png" type="image/x-icon">
</head>
<body>
<div class="card">
<div class="wrap">
<div class="terminal">
<hgroup class="head">
<p class="title">
<img src="img/terminal.png" alt="Terminal Icon" class="icon">
Terminal
</p>
<button class="copy_toggle" type="button" onclick="copyCommand()">
<svg
width="16px"
height="16px"
aria-hidden="true"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
stroke-linejoin="round"
stroke-linecap="round"
stroke-width="2"
stroke="currentColor"
fill="none"
>
<path
d="M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2"
></path>
<path
d="M9 3m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z"
></path>
</svg>
</button>
</hgroup>
<div class="body">
<pre class="pre"> <code>- </code>
<code>npm </code>
<code class="cmd" data-cmd="subscribe to BintScripts"></code>
</pre>
</div>
</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>