-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex2.html
More file actions
49 lines (49 loc) · 1.56 KB
/
index2.html
File metadata and controls
49 lines (49 loc) · 1.56 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>code</title>
<style>
* { box-sizing: border-box; }
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
background: #0d1117;
color: #c9d1d9;
padding: 40px;
max-width: 600px;
margin: 0 auto;
line-height: 1.6;
}
h1 { color: #58a6ff; border-bottom: 1px solid #30363d; padding-bottom: 10px; }
ul { list-style: none; padding: 0; }
li { padding: 12px 0; border-bottom: 1px solid #21262d; }
a {
color: #58a6ff;
text-decoration: none;
font-size: 18px;
}
a:hover { text-decoration: underline; }
.footer {
margin-top: 40px;
padding-top: 20px;
border-top: 1px solid #30363d;
font-size: 12px;
color: #8b949e;
}
.footer a { font-size: 12px; }
</style>
</head>
<body>
<h1>code</h1>
<ul>
<li><a href="multi_cipher_v2.2_workers.html">multi cipher v2.2 workers</a></li>
<li><a href="multi_cipher_v2_3_xor.html">multi cipher v2 3 xor</a></li>
<li><a href="multi_cipher_v2_5.html">multi cipher v2 5</a></li>
<li><a href="vigenere_tool.html">vigenere tool</a></li>
</ul>
<div class="footer">
<a href="https://github.com/ericperret/code">View on GitHub</a>
</div>
</body>
</html>