-
Notifications
You must be signed in to change notification settings - Fork 0
/
event_management.html
90 lines (76 loc) · 2.97 KB
/
event_management.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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Event Management</title>
<style>
* {
box-sizing: border-box;
}
.menu {
float:left;
width:20%;
text-align:left;
list-style: none;
}
.menu a {
background-color:#236AB9;
padding:8px;
margin-top:7px;
display:block;
width:100%;
color:#D4E4F7;
}
.main {
float:left;
width:60%;
padding:0 20px;
background-color: #e9f1fb;
}
.floating-box {
display: inline-block;
width: 200px;
height: 300px;
margin: 10px;
}
.right {
background-color: #e9f1fb;
float:left;
width:20%;
padding:15px;
margin-top:7px;
text-align:center;
}
@media only screen and (max-width:620px) {
/* For mobile phones: */
.menu, .main, .right {
width:100%;
}
}
</style>
</head>
<body style="font-family:Verdana;color:#190934; font-size: 2vw; background-color: #e9f1fb;">
<div style="background-color:#190934;padding:15px;text-align:center;color: #e9f1fb; font-family: serif; font-size: 4vw">
<h1>Music Event Management and Administration</h1>
</div>
<div style="overflow:auto">
<div class="menu">
<li><a href="index.html" >Home </a></li>
<li><a href="music_performance.html">Music Performance</a></li>
<li><a href="music_teaching.html">Music Teaching</a></li>
<li><a href="reed_making.html">Reed Making</a></li>
<li><a href="event_management.html">Music Event Management</a></li>
<li><a href="diaporama.html">Slideshow</a></li>
</div>
<div class="main">
<p>As well as being a keen orchestral player I am also highly interested in music administration and the arts management industry. I have been a volunteer for Royal Birmingham Conservatoire’s annual Frontiers festival and I have worked for <a href="http://www.ncem.co.uk/?idno=228">York Early Music Festival</a> for two summers running.</p>
<p>Since 2015, I have enjoyed working as a concert steward in the Concert Events team of the Royal Birmingham Conservatoire.</p>
<p>I am always looking for exciting new projects, festivals and music events to participate in so please don’t hesitate to <a href="contact-form.html">contact me</a>.</p>
</div>
<div class="right">
<p><img src="images/event_york_2018_250w.png" style="max-width: 250px;"></p>
</div>
</div>
<div style="background-color:#e9f1fb;text-align:center;padding:10px;margin-top:7px; color: #190934;"> Copyright © 2019 | <a href="about.html">About</a> | <a href="contact-form.html">Contact</a> | <a href="https://www.linkedin.com/in/eugenie-bramley-242612123/"><span><img src="images/linkedin-logo.png"></a></span> | <a href="https://www.facebook.com/bramleyoboe/?modal=admin_todo_tour"><span><img src="images/facebook-icon-40-40.png" style=""></span></a></div>
</body>
</html>