-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
40 lines (37 loc) · 1.83 KB
/
index.html
File metadata and controls
40 lines (37 loc) · 1.83 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>StrawberryMaster's Wacky Experiments</title>
<link rel="stylesheet" type="text/css" href="experiments.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:ital,wght@0,100..800;1,100..800&display=swap"
rel="stylesheet">
</head>
<body>
<header>
<h1>Welcome to StrawberryMaster's Wacky Experiments!</h1>
</header>
<main>
<p>This repository contains various experiments and projects that I have worked on. Click on a folder below to
access its contents:</p>
<nav>
<ul>
<li><a href="./calculadora" rel="noopener">Calculadora</a> - A simple calculator</li>
<li><a href="https://strawberrymaster.github.io/experiments/python" rel="noopener">Python</a> - A
collection of Python scripts</li>
<li><a href="./supermajority" rel="noopener">Supermajority Calculator</a> - A calculator that determines
the supermajority for
a vote</li>
<li><a href="https://strawberrymaster.github.io/experiments/nationstates" rel="noopener">NationStates content</a>
- A collection of stylesheets & other NationStates related content</li>
<li><a href="./wargame" rel="noopener">War Game</a> - A calculator that determines the outcome of a
battle between nations</li>
<li><a href="./timetravel" rel="noopener">Dubya</a> (aka Time Travel 1.3) - A weird time-traveling app</li>
</ul>
</nav>
</main>
</body>
</html>