-
Notifications
You must be signed in to change notification settings - Fork 0
/
publication.html
43 lines (42 loc) · 1.16 KB
/
publication.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
37
38
39
40
41
42
43
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Website</title>
<style>
body {
background-color: white;
color: black;
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
cursor: url('./assets/cursor.png'), auto;
}
nav {
padding: 20px;
display: flex;
gap: 20px;
}
a {
text-decoration: none;
color: black;
}
a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<nav>
<a href="./index.html">About</a>
<a href="./tidbits.html">Tidbits</a>
<a href="./publication.html">Publications</a>
<a href="./blog.html">Blog</a>
</nav>
<section id="about">
<h1>Publicaion </h1>
<p>A. Zhang, A. R. Bharadwaj, R. Venkat. Shapeshifting Coloring Problems: An Interactive Tiling Assignment. Educational Advances in Artificial Intelligence (EAAI), Philadelphia, USA, 2025</p>
</section>
</body>
</html>