This repository has been archived by the owner on Jun 28, 2023. It is now read-only.
forked from leolisinski-nti-johanneberg/WU_projektVT2021_2A
-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
93 lines (93 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
<!DOCTYPE html>
<html lang="sv">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Kontaktuppgifter för medlemmar i FABWS styrelse." />
<link rel="stylesheet" href="css/style.css" />
<title>FABWS - Kontakta</title>
</head>
<body>
<nav id="navbar">
<a href="index.html">FABWS</a>
<div hidden id="hamburger-menu-icon">
<svg width="35" viewBox="0 0 60 48">
<g stroke="#000" class="hambuger-parts" stroke-width="8" stroke-linecap="round">
<path id="row1" d="M4 05 l51 0" />
<path id="row2" d="M4 24 l51 0" />
<path id="row3" d="M4 43 l51 0" />
</g>
</svg>
</div>
<ul id="navbar-items">
<li><a href="index.html">Start</a></li>
<li><a href="donate.html">Donera</a></li>
<li><a href="projects.html">Projekt</a></li>
<li><a href="pictures.html">Bilder</a></li>
<li><a href="news.html">Nyheter</a></li>
<li>
<strong><a href="contact.html">Kontakt</a></strong>
</li>
<li><a class="facebook" rel="noopener" href="https://www.facebook.com/Uganda-FABWS-596832300390088" target="_blank">Facebook</a></li>
</ul>
</nav>
<div class="narrow">
<h1>Kontakt</h1>
<h2>Styrelse</h2>
<p>
<strong>Ordförande</strong><br />
<span
>Gunilla Gustafsson<br />
<a href="mailto:[email protected]">[email protected]</a><br />
<a href="tel:+46731407157">0731407157</a>
</span>
</p>
<p>
<strong>Vice ordförande</strong><br />
<span
>Lars-Anders Sjögren<br />
<a href="mailto:[email protected]">[email protected]</a><br />
<a href="tel:+46705507314">0705507314</a>
</span>
</p>
<p>
<strong>Sekreterare</strong><br />
<span
>Lisbeth Svarén<br />
<a href="mailto:[email protected]">[email protected]</a><br />
<a href="tel:+46706319619">0706319619</a>
</span>
</p>
<p>
<strong>Kassör</strong><br />
<span
>Helen Albolin-Svantesson<br />
<a href="mailto:[email protected]">[email protected]</a><br />
<a href="tel:+46705632943">0705632943</a>
</span>
</p>
<p>
<strong>Övrig ledamot</strong><br />
<span
>Lena Friman-Porelius<br />
<a href="mailto:[email protected]">[email protected]</a><br />
<a href="tel:+46704221622">0704221622</a>
</span>
</p>
</div>
<div class="spacer"></div>
<footer>
<div class="narrow">
<p>
<strong>Friendship Association Bugisu - West Sweden</strong>
<br />
Organisationsnummer 802459-3223 | Bankgiro 447-4094 | Swishnummer <span class="swish">123 633 340 5</span>
<br />
<a href="https://www.facebook.com/Uganda-FABWS-596832300390088" target="_blank" rel="noopener">Facebook</a>
</p>
</div>
</footer>
<script src="js/script.js"></script>
</body>
</html>