-
Notifications
You must be signed in to change notification settings - Fork 0
/
events.html
115 lines (81 loc) · 3.93 KB
/
events.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
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" style type="text/css" href="main.css">
</head>
<body>
<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">
<a href="index.html">home</a></span>
<nav class = "dropdown">
<span id = "here">what's on</span>
<ul class="dropdown-content">
<li id= "here"><a>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">member's space</a></span>
</div>
<div id = "empty"></div>
<div id = "main">
<div>
<h2>events</h2>
<h3>A programme of events will be announced in the coming year. If you would like to be added to our events mailing list, please leave you details here:</h3>
</div>
<div id ="poster">
<h2>workshops</h2>
<img src = "images/event1.jpg" alt="event1"/>
<h3>Introduction to Leather:</h3>
<p>Learn skills with London-based designer, Tania Clarke Hall and make your own leather cuff bracelet and earrings. If you aren't familiar with Tania's work, take a look at her website: <a href="http://www.taniaclarkehall.com/">www.taniaclarkehall.com</a>
Places limited to 8. No reservations, places only assured upon full payment. To book, contact: <mailto: "[email protected]">[email protected]</mailto:>
</p>
</div>
</div>
<div id="footer">
<div><h4>Management Team</h4>
<p>Artistic Director: Kim-Ling Morris<br>
Financial Manager: Kim-Ling Morris</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>
</body>
</html>