-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvenue.html
More file actions
99 lines (93 loc) · 4.19 KB
/
venue.html
File metadata and controls
99 lines (93 loc) · 4.19 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Venue – 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="conference-focus.html">Conference Focus</a></li>
<li><a href="program.html">Program</a></li>
<li><a href="register.html">Register</a></li>
<li><a href="venue.html" class="active">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="conference-focus.html">Conference Focus</a>
<a href="program.html">Program</a>
<a href="register.html">Register</a>
<a href="venue.html" class="active">Venue</a>
</div>
</div>
<main>
<div class="page-header">
<div class="page-header-inner">
<h1>Venue & Location</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>Trapani, Sicily, Italy · October 2026</p>
</div>
</div>
<div class="line-divider"></div>
<div class="content-bg">
<div class="section">
<h2 class="sec-title">LOCATION <strong></strong></h2>
<div class="intro">
<p>Chiostro di San Domenico</p>
<p>Salita S. Domenico</p>
<p>91100 Trapani (TP), Italy</p>
<br>
<div id="map-container" style="width: 100%; aspect-ratio: 16 / 9;"><iframe width="100%" height="100%" style="border:0" loading="lazy" allowfullscreen referrerpolicy="no-referrer-when-downgrade" src="https://www.google.com/maps?q=Chiostro+di+San+Domenico+Trapani&output=embed"></iframe></div>
<br>
<p>The conference will take place in the historic centre of Trapani.</p>
<p>Trapani is served by two airports: Trapani–Birgi Airport (approximately 25 minutes from the venue) and Palermo Falcone–Borsellino Airport (approximately 60 minutes). Both airports are well connected to Trapani by regular bus services.</p>
<p>A wide range of accommodation options is available in the city centre, with good availability and generally moderate prices in October. Information about possible hotel agreements will be provided soon.</p>
</div>
<div class="intro">
<h2 class="sec-title">PARTNERS</h2>
<p>Conservatorio di Musica A. Scontrino di Trapani</p>
<p>Conservatorio di Musica A. Scarlatti di Palermo</p>
<p>Comune di Trapani</p>
<p>Ente Luglio Musicale Trapanese</p>
</div>
</div>
</div>
</main>
<footer>
<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:">icsc2026@constp.it</a></p>
</div>
</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>