Skip to content

Commit ffa07e6

Browse files
Add tutorial link section to index.html
1 parent f1ab110 commit ffa07e6

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed

index.html

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,41 @@
1515
h1 {
1616
color: #333;
1717
}
18+
.tutorial-link {
19+
margin-top: 30px;
20+
padding: 20px;
21+
background-color: #f5f5f5;
22+
border-radius: 8px;
23+
border-left: 4px solid #667eea;
24+
}
25+
.tutorial-link h2 {
26+
color: #667eea;
27+
margin-bottom: 10px;
28+
}
29+
.tutorial-link a {
30+
display: inline-block;
31+
margin-top: 15px;
32+
padding: 12px 30px;
33+
background-color: #667eea;
34+
color: white;
35+
text-decoration: none;
36+
border-radius: 5px;
37+
transition: background-color 0.3s;
38+
}
39+
.tutorial-link a:hover {
40+
background-color: #5568d3;
41+
}
1842
</style>
1943
</head>
2044
<body>
2145
<h1>Data Science UIBK</h1>
2246
<p>Welcome to our GitHub Pages site.</p>
47+
48+
<div class="tutorial-link">
49+
<h2>WWW 2026 Tutorial</h2>
50+
<p><strong>Temporal Information Retrieval and Question Answering in the Age of LLMs</strong></p>
51+
<p>April 13, 2026 | Dubai, UAE</p>
52+
<a href="https://datascienceuibk.github.io/temporal-ir-qa-tutorial-www2025/" target="_blank">Visit Tutorial Website →</a>
53+
</div>
2354
</body>
2455
</html>

0 commit comments

Comments
 (0)