-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprogram.html
More file actions
135 lines (126 loc) · 3.99 KB
/
program.html
File metadata and controls
135 lines (126 loc) · 3.99 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
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Favicons -->
<link rel="icon" href="assets/favicon/favicon.ico" sizes="any" />
<link rel="icon" href="assets/favicon/favicon.svg" type="image/svg+xml" />
<link rel="apple-touch-icon" href="assets/favicon/apple-touch-icon.png" />
<link rel="manifest" href="assets/favicon/site.webmanifest" />
<!-- Optional: fallback PNG sizes -->
<link
rel="icon"
type="image/png"
sizes="96x96"
href="assets/favicon/favicon-96x96.png"
/>
<link
rel="icon"
type="image/png"
sizes="192x192"
href="assets/favicon/web-app-manifest-192x192.png"
/>
<link
rel="icon"
type="image/png"
sizes="512x512"
href="assets/favicon/web-app-manifest-512x512.png"
/>
<title>Program | FAIR 3D Heritage</title>
<link rel="stylesheet" href="style.css" />
</head>
<body class="page">
<!-- TOPNAV -->
<header class="topnav" id="topnav">
<h2 class="visually-hidden">Header</h2>
<div class="wrapper">
<a href="index.html" class="topnav__homelink">
<img
src="assets/Logo.svg"
alt="FAIR 3D Heritage"
class="topnav__logo"
/>
</a>
<button
class="topnav__toggle"
id="navToggle"
aria-label="Open menu"
aria-expanded="false"
aria-controls="mainMenu"
type="button"
>
<img
src="assets/Burger.svg"
alt=""
class="topnav__toggle-icon"
width="24"
height="24"
/>
</button>
<nav class="menu" id="mainMenu" aria-label="Main navigation">
<ul class="topnav_links">
<li class="topnav__item">
<a href="index.html" class="topnav__link">HOME</a>
</li>
<li class="topnav__item">
<a href="index.html#about" class="topnav__link">ABOUT</a>
</li>
<li class="topnav__item">
<a href="call-for-papers.html" class="topnav__link"
>CALL FOR PAPERS</a
>
</li>
<li class="topnav__item is-active">
<a href="program.html" class="topnav__link">PROGRAM</a>
</li>
<li class="topnav__item">
<a href="registration.html" class="topnav__link">REGISTRATION</a>
</li>
<li class="topnav__item">
<a href="contact.html" class="topnav__link">CONTACT</a>
</li>
</ul>
</nav>
</div>
</header>
<main id="main">
<!-- HERO PROGRAM -->
<section class="page-hero page-hero--program" aria-label="Program hero">
<img
class="page-hero__bg"
src="assets/program-hero-bg-1440.png"
alt=""
aria-hidden="true"
/>
<div class="page-hero__overlay">
<div class="container">
<h1 class="page-hero__title reveal on-load delay-2">PROGRAM</h1>
</div>
</div>
</section>
<!-- CONTENT -->
<section class="section program-content">
<div class="container">
<div class="prose reveal">
<p>
The conference program will be announced in April 2026, following
the paper selection process. In addition to paper and poster
sessions, we plan to host workshops on 3D infrastructures and FAIR
3D data. The Organizing Committee also plans excursions to local
heritage sites in Mainz.
</p>
</div>
</div>
</section>
</main>
<!-- FOOTER -->
<footer class="site-footer">
<h2 class="visually-hidden">Footer</h2>
<div class="container footer">
<p class="footnote">© FAIR 3D Heritage</p>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>