-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathabout.html
More file actions
executable file
·74 lines (67 loc) · 2.61 KB
/
about.html
File metadata and controls
executable file
·74 lines (67 loc) · 2.61 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Mobistudy</title>
<link rel="icon" type="image/ico" href="img/favicon.ico">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="style.css">
</head>
<body>
<nav id="navigation">
<div>
<a href="/"><img src="img/icon.svg" width="100" /></a>
</div>
<div>
<a class="buttonlink" href="news.html">News</a>
</div>
<a class="buttonlink" href="publications.html">Publications</a>
<div>
<a class="buttonlink" href="about.html">About us</a>
</div>
</nav>
<main style="padding: 50px;">
<section>
<div style="text-align: center;">
<a href="https://mau.se"><img src="img/malmo_logo.png" style="max-width: 60px;"></a>
</div>
<p style="text-align: center;">Mobistudy is developed with ❤️ by Malmö University, Sweden.</p>
<p style="text-align: center;">
<a href="https://www.iva.se/projekt/research2business/ivas-100-lista-2021/">
<img src="img/IVA100_badge.png" style="width:90%; max-width: 700px;">
</a>
</p>
</section>
<section>
<h2>Contact information:</h2>
Mobistudy is currently managed by the Sustainable Digitalization Research Center of Malmö University,
Sweden.
<br><br>
You can contact the Mobistudy team using the official email address: mobistudy@mau.se
or you can write us at our address: SDRC, Bassänggatan 2, 211 19 Malmö, Sweden.
<br><br>
For more information, you can consult:
<ul>
<li><a href="https://mobistudy.org">The Mobistudy website</a></li>
<li><a href="https://mau.se/en/research/research-centres/sustainable-digitalisation-research-centre/">The
SDRC website</a></li>
<li><a href="https://mau.se/">The Malmö University website</a></li>
</ul>
</section>
</main>
<footer id="footer">
<div>
<a href="acks.html">Acknowledgements</a>
</div>
<div>
<a href="appPrivacyPolicy.html">Participants' app privacy policy</a>
</div>
<div>
<a href="researchersPrivacyPolicy.html">Researchers website privacy policy</a>
</div>
<div>
<a href="https://github.com/Mobistudy"><img src="img/githubicon.svg" width="60"></img></a>
</div>
</footer>
</body>
</html>