Skip to content

Commit bce931f

Browse files
committed
📑 Add index.html for GitHub Pages
1 parent 888aa59 commit bce931f

1 file changed

Lines changed: 50 additions & 0 deletions

File tree

index.html

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<title>code</title>
7+
<style>
8+
* { box-sizing: border-box; }
9+
body {
10+
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
11+
background: #0d1117;
12+
color: #c9d1d9;
13+
padding: 40px;
14+
max-width: 600px;
15+
margin: 0 auto;
16+
line-height: 1.6;
17+
}
18+
h1 { color: #58a6ff; border-bottom: 1px solid #30363d; padding-bottom: 10px; }
19+
ul { list-style: none; padding: 0; }
20+
li { padding: 12px 0; border-bottom: 1px solid #21262d; }
21+
a {
22+
color: #58a6ff;
23+
text-decoration: none;
24+
font-size: 18px;
25+
}
26+
a:hover { text-decoration: underline; }
27+
.footer {
28+
margin-top: 40px;
29+
padding-top: 20px;
30+
border-top: 1px solid #30363d;
31+
font-size: 12px;
32+
color: #8b949e;
33+
}
34+
.footer a { font-size: 12px; }
35+
</style>
36+
</head>
37+
<body>
38+
<h1>code</h1>
39+
<ul>
40+
<li><a href="index2.html">index2</a></li>
41+
<li><a href="multi_cipher_v2.2_workers.html">multi cipher v2.2 workers</a></li>
42+
<li><a href="multi_cipher_v2_3_xor.html">multi cipher v2 3 xor</a></li>
43+
<li><a href="multi_cipher_v2_5.html">multi cipher v2 5</a></li>
44+
<li><a href="vigenere_tool.html">vigenere tool</a></li>
45+
</ul>
46+
<div class="footer">
47+
<a href="https://github.com/ericperret/code">View on GitHub</a>
48+
</div>
49+
</body>
50+
</html>

0 commit comments

Comments
 (0)