-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtalk.html
81 lines (76 loc) · 2.34 KB
/
talk.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8" />
<meta
name="viewport"
content="width=840, initial-scale=1, shrink-to-fit=no"
/>
<meta name="author" content="Ziru Chen" />
<meta name="description" content="TacoBot Homepage" />
<link rel="shortcut icon" type="image/jpg" href="img/favicon.ico" />
<title>TacoBot - The Ohio State University</title>
<!-- Bootstrap core CSS -->
<link href="bootstrap/css/bootstrap.css" rel="stylesheet" />
<!-- Pretty icons from https://feathericons.com/ -->
</head>
<body>
<nav class="navbar navbar-expand-lg bg-light">
<div class="container-fluid">
<div
class="collapse navbar-collapse d-flex justify-content-start"
id="navbarSupportedContent"
>
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
<li class="nav-item">
<a class="navbar-brand text-danger" href="index.html">
<img
src="img/o-block-buckeye.png"
width="30.8"
height="35.5"
class="d-inline-block align-top"
alt="o-block-buckeye"
/>
OSU TacoBot
</a>
</li>
<li class="nav-item">
<a
class="nav-link active text-danger"
aria-current="page"
href="people.html"
>People</a
>
</li>
<li class="nav-item">
<a class="nav-link active text-danger" href="pub.html"
>Publications</a
>
</li>
<li class="nav-item">
<a class="nav-link active text-danger" href="talk.html"
>Talks</a
>
</li>
</ul>
</div>
</div>
</nav>
<div class="container">
<div id="talk">
<br />
<h4 class="text-danger">
<strong><i>Talks</i></strong>
</h4>
<ul>
<li>
Invited talk, Microsoft Semantic Machines, 07/29/2022
</li>
<li>
Invited talk, Deep Learning on Graphs for Natural Language Processing (DLG4NLP workshop at NAACL’22), 07/15/2022
</li>
</div>
</div>
</body>
</html>