-
Notifications
You must be signed in to change notification settings - Fork 0
/
join.html
87 lines (77 loc) · 3.75 KB
/
join.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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Basic Page Needs
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<meta charset="utf-8">
<title>Northampton Symphony Orchestra</title>
<meta name="description"
content="Homepage of the Northampton Symphony Orchestra">
<meta name="author" content="Nicholas H.Tollervey">
<!-- Mobile Specific Metas
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- FONT
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<link href='http://fonts.googleapis.com/css?family=Raleway:400,300,600' rel='stylesheet' type='text/css'>
<!-- CSS
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/skeleton.css">
<link rel="stylesheet" href="css/custom.css">
<!-- Favicon
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<link rel="icon" type="image/png" href="images/logo_small.jpg" />
</head>
<body>
<!-- Global Navigation
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<nav class="navbar">
<div class="container">
<a href="/">
<img class="logo" src="images/logo.jpg" alt="NSO Logo"/>
<img class="logo-small" src="images/logo_small.jpg" alt="NSO Logo"/>
</a>
<ul class="navbar-list">
<li class="navbar-item">
<a href="/concerts.html" class="navbar-link">Concerts</a>
</li>
<li class="navbar-item">
<a href="/members.html" class="navbar-link">Members</a>
</li>
<li class="navbar-item">
<a href="/friends.html" class="navbar-link">Friends</a>
</li>
<li class="navbar-item">
<a href="/about.html" class="navbar-link">About</a>
</li>
</ul>
</div>
</nav>
<!-- Page Content
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<div class="container">
<div class="twelve columns">
<p>We are always looking for new string players. All other positions
are currently filled. Members must have
reached a performance level on par with Grade VIII. There is an annual
membership subscription fee.</p>
<div class="responsive-iframe-container join">
<iframe src="https://forms.gle/Jn1AYESPzNDGdhtw6/viewform?embedded=true" width="760" height="1000" frameborder="0" marginheight="0" marginwidth="0">Loading...</iframe>
</div>
</div>
</div>
<!-- Footer etc...
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<footer>
<div class="container">
<p>© 2015 Northampton Symphony Orchestra. This site is licensed
under a
<a href="http://creativecommons.org/licenses/by-nc-sa/4.0/">CC BY-NC-SA 4.0</a>
license.</p>
</div>
</footer>
<!-- End Document
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
</body>
</html>