-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexperiments.html
More file actions
84 lines (80 loc) · 2.81 KB
/
experiments.html
File metadata and controls
84 lines (80 loc) · 2.81 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Experiments & Prototypes — Tobi's Page</title>
<link rel="icon" type="image/png" href="favicon.png" />
<link rel="stylesheet" href="css/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=Press+Start+2P&display=swap"
rel="stylesheet"
/>
</head>
<body>
<div class="exp-page">
<header class="exp-header">
<a href="index.html" class="exp-back">← back</a>
<h1 class="exp-title">Experiments & Prototypes</h1>
<p class="exp-subtitle">
small projects and prototypes i built to explore ideas that seemed
worth exploring.
</p>
</header>
<main>
<ul class="exp-list">
<li class="exp-item">
<a href="experiments/auttitles/index.html" class="exp-item-link">
Explorative Austrian Titles
</a>
<span class="exp-item-desc">
, stupid alternatives for browsing and selecting Austrian academic
& professional stupid title combinations.
</span>
</li>
<li class="exp-item">
<a href="experiments/dialektr/" class="exp-item-link">Dialektr</a>
<span class="exp-item-desc"
>, Austrian dialect guessing game where you can guess the actual
german word for a dialect word.</span
>
</li>
<li class="exp-item">
<a
href="experiments/portfoliodesign/index.html"
class="exp-item-link"
>Photo Portfolio Design</a
>
<span class="exp-item-desc"
>, check out the design I use to display my photos.</span
>
</li>
<li class="exp-item">
<a
href="https://teletobe.github.io/ttlibrary/"
class="exp-item-link"
target="_blank"
rel="noopener"
>Digital personal library</a
>
<span class="exp-item-desc"
>, check out our personal library! and feel free to request to
borrow a book</span
>
</li>
<li class="exp-item exp-item--soon">
<span class="exp-item-link exp-item-link--soon"
>Splitboard Tours</span
>
<span class="exp-item-desc"
>, where you won't get stuck.
<span class="exp-soon-tag">(live soon)</span></span
>
</li>
</ul>
</main>
</div>
</body>
</html>