-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
36 lines (33 loc) · 1.5 KB
/
index.html
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
<!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">
</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/stylesheets" rel="noopener">Stylesheets</a>
- A collection of stylesheets</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/dubya" rel="noopener">Dubya</a> - A weird time-traveling app</li>
</ul>
</nav>
</main>
</body>
</html>