-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (34 loc) · 1010 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<style>
body {
background-color: #dc002d;
text-align: center;
}
a {
padding-right: 15px;
}
img {
transition: transform 1s;
}
img.spin {
transform: rotate(360deg);
}
</style>
</head>
<body>
<img src="https://avatars.githubusercontent.com/u/123118331?s=200&v=4" alt="Homepage Image" onclick="this.classList.toggle('spin')">
<br>
<br>
<div style="padding-left: 6em;">
<b>
<a href="https://www.rug.nl/research/clcg/research/cl/" style="color: white;">Homepage</a>
<a href="https://twitter.com/GroNLP" style="color: white;">Twitter</a>
<a href="https://sigmoid.social/@gronlp" style="color: white;">Mastodon</a>
<a href="https://huggingface.co/GroNLP" style="color: white;">Hugging Face</a>
<a href="https://www.youtube.com/@gronlp" style="color: white;">Youtube</a>
</b>
</div>
</body>
</html>