This repository has been archived by the owner on May 5, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
77 lines (65 loc) · 3.05 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
<!DOCTYPE html>
<html>
<head>
<title>Software</title>
<link rel="stylesheet" type="text/css" href="main.css">
<metahttp-equiv="content-type" content="text/html;charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Bootstrap -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<script src="js/jquery-1.10.2.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<link href="css/style.css" rel="stylesheet">
</head>
<body>
<div class="navbar navbar-inverse navbar-fixed-top" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse"
data-target=".navbar-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="/index.html">SmartLab</a>
</div>
<div class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="/index.html">Home</a></li>
<li><a href="/resources.html">Resources</a></li>
</ul>
<ul class="nav navbar-nav navbar-right">
<li class="active"><a href="/contact.html">Contact</a></li>
</ul>
</div><!--/.nav-collapse -->
</div>
</div>
<div class="container" id="maincont">
<div class="row">
<div class="col-sm-3">
<h3>Contact</h3>
<p>If you find our research interesting, want to collaborate, take a
Master or Ph.D. with in our lab or have any other questions, feel free to
send an email to: Lars Ailo Bongo <a href="mailto:#">[email protected]</a>
</p>
</div>
<div class="col-sm-9" style="padding-top: 40px">
<h3>Contact information</h3>
<table class="table table-hover">
<tr><td> Lars Ailo Bongo <a href="mailto:#">[email protected]</a>
</td></tr>
</table>
<h3>Visiting address</h3>
<p>The lab is located in the Department of Computer Science and Center for Bioinformatics at the University of Tromsø:</p>
<p>
Department of Computer Science,<br>
Science Building (Realfagbygget), University Campus<br>
Hansine Hansens vei 54<br>
Tromsø (Breivika)
</p>
<p>The following links provide information about how to get to <a href="http://hpds.cs.uit.no/contact.html">Department of Computer Science</a>.</p>
</div>
</div>
</body>
</html>