-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
125 lines (120 loc) · 3.7 KB
/
index.html
File metadata and controls
125 lines (120 loc) · 3.7 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Ryan Hill</title>
<link rel="stylesheet" href="style/base.css" />
<link rel="icon" href="build/assets/favicon.ico" type="image/x-icon" />
</head>
<body>
<div id="content">
<h1>Ryan Hill</h1>
<p>Welcome to my personal website!</p>
<p>Try not to let too many wavefunctions crowd the content.</p>
</div>
<button
id="collapseAllButton"
style="position: absolute; top: 10px; right: 10px; z-index: 1000"
>
Collapse All
</button>
<button
id="themeToggleButton"
style="position: absolute; top: 10px; right: 120px; z-index: 1000"
title="Toggle dark/light theme"
>
🌙
</button>
<canvas id="gameCanvas"></canvas>
<script src="components/waveforms.js"></script>
</body>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Links with Dividers</title>
</head>
<body>
<div class="link-row">
<footer>
<a
href="mailto:hello@ryanhill.tech"
title="Email"
style="
margin-right: 10px;
display: inline-block;
vertical-align: middle;
"
>
<svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
>
<line x1="22" y1="2" x2="11" y2="13"></line>
<polygon points="22 2 15 22 11 13 2 9 22 2"></polygon>
</svg>
</a>
<a
href="https://github.com/ryanhill1/ryanhill1.github.io"
target="_blank"
rel="noopener noreferrer"
title="Source Code"
style="
margin-right: 10px;
display: inline-block;
vertical-align: middle;
"
>
<svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
>
<polyline points="16 18 22 12 16 6"></polyline>
<polyline points="8 6 2 12 8 18"></polyline>
</svg>
</a>
<a
href="https://creativecommons.org/licenses/by-nc-sa/4.0/"
class="cc-license"
target="_blank"
rel="noopener noreferrer"
title="Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License"
>
<img
style="height: 22px; margin-left: 3px; vertical-align: text-bottom"
src="https://mirrors.creativecommons.org/presskit/icons/cc.svg?ref=chooser-v1"
alt="Creative Commons"
/>
<img
style="height: 22px; margin-left: 3px; vertical-align: text-bottom"
src="https://mirrors.creativecommons.org/presskit/icons/by.svg?ref=chooser-v1"
alt="Attribution"
/>
<img
style="height: 22px; margin-left: 3px; vertical-align: text-bottom"
src="https://mirrors.creativecommons.org/presskit/icons/nc.svg?ref=chooser-v1"
alt="Non-Commercial"
/>
<img
style="height: 22px; margin-left: 3px; vertical-align: text-bottom"
src="https://mirrors.creativecommons.org/presskit/icons/sa.svg?ref=chooser-v1"
alt="Share-Alike"
/>
</a>
</footer>
</div>
</body>
</html>