-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprogram.html
More file actions
95 lines (84 loc) · 3.38 KB
/
program.html
File metadata and controls
95 lines (84 loc) · 3.38 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Program – ICSC 2026 · Trapani, Sicily</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link href="https://fonts.googleapis.com/css2?family=Source+Sans+3:wght@300;400&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="nav-wrapper">
<nav>
<a class="nav-brand" href="index.html">
<div class="nav-brand-logo">Cs</div>
ICSC <span>2026</span>
</a>
<ul class="nav-links">
<li><a href="index.html">Home</a></li>
<li><a href="team.html">Team</a></li>
<li><a href="submission.html">Submission</a></li>
<li><a href="program.html" class="active">Program</a></li>
<li><a href="register.html">Register</a></li>
<li><a href="venue.html">Venue</a></li>
</ul>
<button class="burger" id="burger" onclick="toggleMenu()" aria-label="Menu">
<span></span><span></span><span></span>
</button>
</nav>
<div class="mobile-menu" id="mobileMenu">
<a href="index.html">Home</a>
<a href="team.html">Team</a>
<a href="submission.html">Submission</a>
<a href="program.html" class="active">Program</a>
<a href="register.html">Register</a>
<a href="venue.html">Venue</a>
</div>
</div>
<main>
<div class="page-header">
<div class="page-header-inner">
<h1>Program</h1>
<!-- <svg class="hero-wave" preserveAspectRatio="none" viewBox="0 0 1000 60" fill="none" xmlns="http://www.w3.org/2000/svg"><polyline points="0,56 580,56 580,8 620,8 620,56 660,56 660,8 700,8 700,56 740,56 740,8 780,8 780,56 820,56 820,8 860,8 860,56 900,56 900,8 940,8 940,56 1000,56" stroke="#12184a" stroke-width="2.5" stroke-linejoin="miter" stroke-linecap="square" fill="none"/></svg> -->
<div class="page-header-rule"></div>
<p>Conference schedule · To be announced</p>
</div>
</div>
<div class="line-divider"></div>
<div class="content-bg">
<div class="section">
<span class="sec-kicker">Schedule</span>
<h2 class="sec-title">Program <strong>Coming Soon</strong></h2>
<div class="intro">
Program: TBA
</div>
<!-- <div class="notice">
<strong>More info soon.</strong> Follow updates at <a href="/cdn-cgi/l/email-protection#335f5c41565d495c1d51525f5f56415a5d5a73505c5d4047431d5a47" style="color:var(--navy);"><span class="__cf_email__" data-cfemail="2b4744594e45514405494a47474e594245426b484445585f5b05425f">[email protected]</span></a>
</div> -->
</div>
</div>
</main>
<footer>
<!-- <div class="footer-line"></div> -->
<div class="footer-inner">
<div class="footer-brand">
ICSC 2026
<p>8th International Csound Conference · Trapani, Sicily</p>
<p class="footer-contact">Contact: <a href="mailto:">lorenzo.ballerini@constp.it</a></p>
</div>
</div>
<!-- <div class="footer-copy">
<span>© 2026 ICSC — International Csound Conference</span>
</div> -->
</footer>
<script>
function toggleMenu() {
var m = document.getElementById("mobileMenu");
var b = document.getElementById("burger");
m.classList.toggle("open");
b.classList.toggle("open");
}
</script>
</body>
</html>