-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
150 lines (107 loc) · 6.62 KB
/
index.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
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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>index Sample Studios</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" style type="text/css" href="main.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src = "jquery-3.2.1.js"></script>
<script src = "main.js"></script>
</head>
<div class="grid-wrapper">
<div id="logo"><img src ="images/logo.png" alt="logo"/></div>
<div id="header">
<div><h1>Sample-Studios</h1></div>
<div><a href="https://www.facebook.com/samplestudios"><img src="images/facebook1.png" alt="facebook"/></a>
<a href="https://twitter.com/SampleStudios">
<img src="images/twitter1.png" alt="twitter"/></a>
<a href=""><img src="images/instagram1.png" alt="intagram"/></a>
</div>
</div>
<label for="show-menu" class="show-menu">menu</label>
<input type="checkbox" id="show-menu" role="button">
<div id="menu">
<span class = "dropdown" id = "here">
home</span>
<nav class = "dropdown">
<span>what's on</span>
<ul class="dropdown-content">
<li><a href="events.html">events</a></li>
<li><a href="tactic.html">tactic</a></li>
</ul>
</nav>
<nav class="dropdown"><span>join us</span>
<ul class="dropdown-content">
<li><a href="membership.html">membership</a></li>
<li><a href="members.html">current members</a></li>
</ul></nav>
<nav class ="dropdown"><span>residencies</span>
<ul class="dropdown-content">
<li><a href="applications.html">applications</a></li>
<li><a href="residencies.html">past residencies</a></li>
</ul></nav>
<nav class = "dropdown">
<span>facilities</span>
<ul class="dropdown-content">
<li><a href="studios.html">studios</a></li>
<li><a href="resources.html">other resources</a></li>
</ul></nav>
<span class = "dropdown"><a href="memberspace.html">our shop</a></span>
<span class = "dropdown"><a href="memberspace.html">member's space</a></span>
<!-- <a class="toggle close" href="#">close</a>-->
</div>
<div id = "empty"></div>
<div id = "main">
<div id="draw1">
<h1>what's on</h1>
<span class="submenu"><a href = "events.html">events</a></span>
<span class="submenu"><a href = "tactic.html">tactic</a></span>
</div>
<div><p>The core philosophy of Sample-Studios is to support professional development for contemporary arts practitioners at our premises in Cork city.<br> We aim to support and promote emerging and established contemporary practitioners alike from Cork and beyond while endeavouring to sustain and develop local, regional and international initiatives. We also encourage the promotion of research and community outreach projects.</p></div>
<div id="draw2"><h1>join us</h1>
<span class="submenu"><a href = "membership.html">memebership</a></span>
<span class="submenu"><a href = "members.html">current members</a></span>
</div>
<div><p>With a member base of over 40 practitioners, Sample-Studios houses a variety of professional artists from all disciplines.<br> Through TACTIC (our dedicated visual arts programme), Sample-Studios aims to contribute to the creative community in Cork with a programme of challenging and exciting art. This is realised in regular visual arts events in locations around Cork City as well as in venues further afield arranged through studio-group exchanges. Sample-Studios endeavours to promote arts research and community outreach projects through the educational and participatory elements of the programmes.
</p>
</div>
<div id="draw3">
<h1>residencies</h1>
<span class="submenu"><a href = "residencies.html">past residencies</a></span>
<span class="submenu"><a href = "applications.html">applications</a></span>
</div>
<div><p>
Through the introduction of our annual graduate bursaries, the organisation also harbours a unique potential for incubating and nurturing emerging artists wishing to develop their careers in an experienced and supportive environment. Students who are awarded this bursary receive membership for 6 months, access to shared facilities and a solo show as part of the organisation's visual arts programme. The two bursary types are:
<br><br>• artist in residence programme<br><br>
• curator in residence</p>
</div>
<div id = "draw4"><h1>facilities</h1>
<span class="submenu"><a href = "studios.html">studios</a></span>
<span class="submenu"><a href = "resources.html">other resources</a></span>
</div>
<div><p>The organisation provides a competent and consistent facility comprising of over 30 affordable studio work spaces within a creative environment.
<br>
The facilities are thoughtfully arranged to encourage innovative contemporary practice while also acting as a viable venue for commercial artists where they can meet prospective curators, buyers etc.</p>
</div>
</div>
<div id="footer">
<div><h4>Management Team</h4>
<p>Artistic Director/<br>Financial Manager:<br> Kim-Ling Morris<br>
</p></div>
<div><h4>Board of Directors</h4>
<p>Oisín Creagh<br>
Peadar Lamb<br>
Maighread Kelly<br>
Pádraig Spillane
</p></div>
<div><h4><a href="contact.html">contact & directions</a></h4></div>
<div><img src="images/artscouncil.png" alt="art council"/>
</div>
<div><img src="images/artsoffice.png" alt="art office"/>
</div>
<div><img src="images/vai.jpg" alt="visual artists of Ireland"/>
</div>
</div>
</div>
</html>