-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexperiments.html
More file actions
34 lines (34 loc) · 1.28 KB
/
experiments.html
File metadata and controls
34 lines (34 loc) · 1.28 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Experiments</title>
<link rel="stylesheet" href="styles.css">
<link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 32 32%22><text y=%2224%22 font-size=%2232%22>🐟</text></svg>">
</head>
<body>
<div class="navbar">
<a href="index.html" class="navbar-item">Home</a>
<a href="projects.html" class="navbar-item">Projects</a>
<a href="experiments.html" class="navbar-item">Experimentations!!!</a>
<a href="to-do.html" class="navbar-item">TO:DO</a>
</div>
<main>
<h1>Experiments</h1>
<p>like projects but not really - just messing around</p>
<p>motion - a mobile experience</p>
<a href="experiments/motion/index.html" class="navbar-item">Motion</a>
<p>ad</p>
<a href="experiments/ad.html" class="navbar-item">ad</a>
</main>
<script>
document.addEventListener('DOMContentLoaded', function() {
const savedColor = localStorage.getItem('backgroundColor');
if (savedColor) {
document.body.style.backgroundColor = savedColor;
}
});
</script>
</body>
</html>