-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathschedule.html
More file actions
46 lines (42 loc) · 1.28 KB
/
schedule.html
File metadata and controls
46 lines (42 loc) · 1.28 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" type="image/x-icon" href="./assets/img/favicon.ico" />
<title>Knowledge-guided GenAI Workshop @ ICML 2026</title>
<link href="./assets/css/main.css" rel="stylesheet">
</head>
<body>
<!-- ============================= NAVIGATION ============================= -->
<header>
<nav class="navbar">
<span style="font-weight: 700; font-size: 1.25rem; display: flex;">
<a href="./index.html">Knowledge-guided GenAI Workshop</a>
</span>
<div>
<a href="./cfp.html">Call For Papers</a>
<a href="./schedule.html">Schedule</a>
</div>
</nav>
</header>
<br>
<br>
<!-- ============================= SCHEDULE ============================= -->
<section id="schedule">
<h2>Schedule</h2>
<p>
Coming Soon...
</p>
</section>
<!-- ============================= CONTACT ============================= -->
<section id="contact">
<h2>Contact</h2>
<p>Coming Soon...</p>
</section>
<!-- ============================= FOOTER ============================= -->
<footer>
<small>© Knowledge-guided GenAI Workshop · ICML 2026</small>
</footer>
</body>
</html>