-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
executable file
·61 lines (47 loc) · 2.17 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
<!DOCTYPE html>
<html>
<title>Mobile Permissions - Contact</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="assets/w3.css">
<link rel="stylesheet" href="assets/w3-theme-teal.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.3.0/css/font-awesome.min.css">
<body>
<!-- Header -->
<header class="w3-container w3-theme w3-padding" id="myHeader">
<div class="w3-center">
<a href='index.html' class='w3-bar-item w3-button w3-hover-theme'><h4>Mobile Permissions</h4></a>
<h1 class="w3-xxxlarge w3-animate-bottom">Contact Us</h1>
</div>
</header>
<div>
<div class="w3-card w3-container">
<!--
<p>Information not available due to requirements of the blind review process.</p>
-->
<p>
The following people have contributed to the project:
<ul>
<!-- Everyone feel free to put your own websites in -->
<li>Gian Luca Scoccia</li>
<li>Virginia Pujols</li>
<li>Anthony Peruma</li>
<li>Ivano Malavolta</li>
<li><a href="http://danielkrutz.github.io" target="_blank">Daniel Krutz</a></li>
</ul>
</p>
<center>
<a href="index.html"><i class="fa fa-home w3-text-theme" style="font-size:23px;"></i></a>
<i class="fa fa-ellipsis-v w3-text-theme" style="font-size:15px;"></i>
<a href="download.html"><i class="fa fa-download w3-text-theme" style="font-size:23px;"></i></a>
<i class="fa fa-ellipsis-v w3-text-theme" style="font-size:15px;"></i>
<a href="schema.html"><i class="fa fa-database w3-text-theme" style="font-size:23px;"></i></a>
<i class="fa fa-ellipsis-v w3-text-theme" style="font-size:15px;"></i>
<a href="tools.html"><i class="fa fa-wrench w3-text-theme" style="font-size:23px;"></i></a>
<i class="fa fa-ellipsis-v w3-text-theme" style="font-size:15px;"></i>
<a href="contact.html"><i class="fa fa-comment w3-text-theme" style="font-size:23px;"></i></a>
</center>
</div>
</div>
</body>
</html>