-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
123 lines (88 loc) · 3.88 KB
/
contact.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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>PICYCLE : Recycle Your Raspberry Pi</title>
<script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>
<!-- jsinger - groovy google font -->
<link href="https://fonts.googleapis.com/css?family=Josefin+Slab" rel="stylesheet">
<link rel="icon" href="favicon.ico" type="image/x-icon" />
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://unpkg.com/[email protected]/build/pure-min.css">
<!--[if lte IE 8]>
<link rel="stylesheet" href="https://purecss.io/combo/1.18.13?/css/layouts/side-menu-old-ie.css">
<![endif]-->
<!--[if gt IE 8]><!-->
<link rel="stylesheet" href="https://purecss.io/combo/1.18.13?/css/layouts/side-menu.css">
<!--<![endif]-->
<!--[if lt IE 9]>
<script src="https://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7/html5shiv.js"></script>
<![endif]-->
</head>
<body>
<div id="layout">
<!-- Menu toggle -->
<a href="#menu" id="menuLink" class="menu-link">
<!-- random icon -->
<span></span>
</a>
<div id="menu">
<div class="pure-menu">
<a class="pure-menu-heading" href="#">Menu</a>
<ul class="pure-menu-list">
<li class="pure-menu-item">
<a href="index.html" class="pure-menu-link">Home</a>
</li>
<li class="pure-menu-item">
<a href="index.html#why" class="pure-menu-link">Why picycle?</a>
</li>
<li class="pure-menu-item" class="menu-item-divided pure-menu-selected">
<a href="index.html#how" class="pure-menu-link">How to picycle?</a>
</li>
<li class="pure-menu-item" class="menu-item-divided pure-menu-selected">
<a href="index.html#objectives" class="pure-menu-link">Objectives</a>
</li>
<li class="pure-menu-item" class="menu-item-divided pure-menu-selected">
<a href="index.html#faq" class="pure-menu-link">FAQ</a>
</li>
<li class="pure-menu-item">
<a href="contact.html" class="pure-menu-link">Contact us</a>
</li>
</ul>
</div>
</div>
<div id="main">
<div class="header">
<img class="pure-img" src="picycle.png" alt="PICYCLE logo" width="400" />
<div id="groovytitle">PICYCLE</div>
</div>
<div class="content">
<h2 class="content-subhead" id="groovyhead"><a name="why"></a>Contact Details</h2>
<h4>Get in touch by email</h4>
<p>
The PICYCLE scheme is based at the <a href="http://www.dcs.gla.ac.uk">School of Computing Science</a>, University of Glasgow. Please mail <a href="mailto:[email protected]">[email protected]</a> if you want to get in touch with us.
</p>
<h4>Send us a parcel from the UK</h4>
<p>
Thanks for your generosity. If your donated devices will fit into a single parcel weighing less than 1kg then please post the parcel to <span id="groovytext">FREEPOST PICYCLE</span>. For larger consignments, please email us directly to arrange a pickup.
</p>
<h4>Send us a parcel from outside the UK</h4>
<p>
We welcome international donors. However you will have to pay international postage rates, which could be expensive. Please address your parcel to:
<table class="pure-table">
<tbody>
<tr><td><span id="groovytext">PICYCLE</span></td></tr>
<tr><td>University of Glasgow</td></tr>
<tr><td>G12 8QQ</td></tr>
<tr><td>UK</td></tr>
</tbody>
</table>
and post via your local mail service.
</p>
</div>
</div> <!-- main -->
</div>
<script src="https://purecss.io/combo/1.18.13?/js/ui.js"></script>
</body>
</html>