-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
61 lines (54 loc) · 2.01 KB
/
index.html
File metadata and controls
61 lines (54 loc) · 2.01 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
56
57
58
59
60
61
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Cipher Toolboxes</title>
<link href="style.css" rel="stylesheet" type="text/css" />
<link href="https://fonts.googleapis.com/css?family=Inconsolata|Lexend+Deca|Ubuntu+Mono:400,700&display=swap" rel="stylesheet">
</head>
<body>
<script src="assets/generalScript.js"></script>
<script src="script.js"></script>
<header>
<h3><a href="">CIPHER TOOLBOXES</a></h3>
<ul>
<li><a href="">ABOUT</a></li>
<li><a href="">COOL STUFF</a></li>
<li><a href="">CIPHERS</a></li>
<li><a href="">TOOLS</a></li>
</ul>
</header>
<section id="landing">
<h1 id="title"><noscript>CIPHER TOOLBOXES</noscript></h1>
<h4 id="subtitle"><noscript>Created by @TSyzygy</noscript></h4>
<a href="#contents"><p id="downarrow">↓</p></a>
</section>
<section id="contents">
<div class="third" id="1">
<h2>CRYPTOGRAPHY TOOLS</h2>
<ul class="contentsList">
<li><a href="tools/text-analysis/">Text Analysis Tools</a></li>
<li><a href="tools/text-manipulation/">Text Manipulation Tools</a></li>
<li><a href="tools/evolutionary-algorithm/">Evolution Algorithm</a></li>
</ul>
</div>
<div class="third" id="2">
<h2>CIPHER DECRYPTERS</h2>
<ul class="contentsList">
<li><a href="">Caesar Cipher Decrypter</a></li>
<li><a href="">Substitution Cipher Decrypter</a></li>
<li><a href="">Vigenere Decrypter</a></li>
</ul>
</div>
<div class="third" id="3">
<h2>COOL PROJECTS</h2>
<ul class="contentsList">
<li><a href="https://repl.it/@ThomasS1/MineSweeper">Minesweeper in Python</a> + <a href="https://repl.it/talk/learn/How-to-program-MineSweeper-in-Python-fully-explained-in-depth-tutorial/9397">tutorial</a></li>
<li><a href="https://repl.it/talk/share/~-Knuths-MASTERMIND-algorithm-in-Python-board-game-~/17435">Knuth's Mastermind Algorithm in Python</a></li>
<li><a href="https://namethattune--thomass1.repl.co">Name that Tune</a></li>
</ul>
</div>
</section>
</body>
</html>