-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
68 lines (57 loc) · 2.33 KB
/
index.html
File metadata and controls
68 lines (57 loc) · 2.33 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Henrik Formoe - Cognitive Neuroscience</title>
<link rel="stylesheet" href="assets/css/main.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
</head>
<body>
<!-- Left Panel -->
<div class="left-panel">
<!-- Canvas container for animation -->
<div class="animation-container">
<canvas id="bg"></canvas>
</div>
<!-- Content -->
<div class="left-content">
<img src="images/henrik.jpg" alt="Henrik Formoe" class="profile-image">
<h1>Henrik Formoe</h1>
<p>Cognitive Neuroscientist</p>
</div>
<div class="copyright">© HF</div>
</div>
<!-- Right Panel -->
<div class="right-panel">
<h2>About Me</h2>
<p>I'm a clinical psychology and computer science student at the University of Oslo, with interests at the intersection of cognitive neuroscience and machine learning. I'm particularly interested in functions such as vision, perception, memory, and decision-making – in sum, how we experience and process the world around us – and the disruption of these processes by conditions like stroke, dementia, and various mental illnesses.</p>
<h2>Communication</h2>
<p>Feel free to reach out for collaborations or discussions!</p>
<p>Location: Oslo, Norway</p>
<p>Email: <a href="mailto:henrfo@uio.no">henrfo@uio.no</a></p>
<ul class="social-links">
<li>
<a href="https://orcid.org/0009-0000-0909-5139" class="icon orcid">
<i class="fab fa-orcid"></i>
<span>ORCID</span>
</a>
</li>
<li>
<a href="https://github.com/henrfo" class="icon github">
<i class="fab fa-github"></i>
<span>GitHub</span>
</a>
</li>
<li>
<a href="mailto:henrfo@uio.no" class="icon email">
<i class="fas fa-envelope"></i>
<span>Email</span>
</a>
</li>
</ul>
</div>
<!-- Scripts -->
<script src="assets/js/neuronAnimation.js"></script>
</body>
</html>