-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
36 lines (36 loc) · 1.02 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 lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Igor Costa</title>
<link rel="stylesheet" href="styles.css">
<link href="https://fonts.googleapis.com/css2?family=Source+Code+Pro&display=swap" rel="stylesheet">
<style>
body {
font-family: 'Source Code Pro', monospace;
}
.dark-theme {
background-color: #333;
color: white;
}
.light-theme {
background-color: #FFF;
color: black;
}
.toggle-theme-btn {
position: fixed;
top: 10px;
right: 10px;
}
</style>
<script src="theme-toggle.js" defer></script>
</head>
<body>
<canvas id="webgl-animation"></canvas>
<h1>Igor Costa</h1>
<p>Senior Architect @ GitHub</p>
<button id="theme-toggle" class="toggle-theme-btn">Toggle Theme</button>
<script src="webgl-animation.js"></script>
</body>
</html>