-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
68 lines (54 loc) · 3.42 KB
/
index.html
File metadata and controls
68 lines (54 loc) · 3.42 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
<html>
<head>
<title>Assiduity</title>
<link rel="stylesheet" href="css/font-awesome.min.css">
<link rel="stylesheet" href="css/main.css">
<script src="js/main.js"></script>
<meta name="viewport" content="width=device-width,initial-scale=1.0">.
</head>
<body onload="pageInitialisation().run()">
<div class=body>
<!-- Background page with images and text scrolling in and out -->
<div id="background-image"></div>
<div id="background-message" class="offscreen">
<span id="background-message-text"></span>
</div>
<!-- Header -->
<div id="header-bar" class="offscreen">
<span id="header-title" class="clickable" onclick="openOurAppPage().run()">
<img id="header-img" src="images/assiduity.png"></img>
</span>
<span class="links-text only-computer">
<span class="clickable" onclick="openOurAppPage().run()">Our app</span>
|
<span class="clickable" onclick="openAboutUsPage().run()">About us</span>
</span>
<span class="links-text only-mobile">
<span class="clickable" onclick="openOurAppPage().run()"><i class="fa fa-tablet"></i></span>
<span class="clickable" onclick="openAboutUsPage().run()"><i class="shift-up fa fa-info-circle"></i></span>
</span>
</div>
<!-- About us slider drawer -->
<div id="about-us-slider-drawer-background-overlay" class="offscreen" onclick="closeAboutUsPage().run()"></div>
<div id="about-us-slider-drawer" class="offscreen">
<div id="about-us-slider-drawer-close" onclick="closeAboutUsPage().run()"><i class="fa fa-times"></i></div>
<h2>Assiduity</h2>
<p>Assiduity is a mobile app for smart browsing of Maltese legislation. </p>
<p>Assiduity was partly the outcome of a project by the <a href="http://www.um.edu.mt">University of Malta</a> funded by the Take-Off Seed Fund Award (TOSFA). Its purpose is to provide easy access to the body of laws in Malta for students and practitioners of the law. </p>
<p>We also acknowledge the financial and legal expertise support from <a href="https://www.gtgadvocates.com/">GTG Advocates</a>.</p>
<p>Contact us at <a href="mailto:xxx@xxx.xxx">xxx@xxx.xxx</a>.</p>
</div>
<!-- Our app slider drawer -->
<div id="our-app-slider-drawer-background-overlay" class="offscreen" onclick="closeOurAppPage().run()"></div>
<div id="our-app-slider-drawer" class="offscreen">
<div id="our-app-slider-drawer-close" onclick="closeOurAppPage().run()"><i class="fa fa-times"></i></div>
<h2>Assiduity</h2>
<p>Assiduity is a mobile app for smart browsing of Maltese legislation. </p>
<p>Assiduity was partly the outcome of a project by the <a href="http://www.um.edu.mt">University of Malta</a> funded by the Take-Off Seed Fund Award (TOSFA). Its purpose is to provide easy access to the body of laws in Malta for students and practitioners of the law. </p>
<p>We also acknowledge the financial and legal expertise support from <a href="https://www.gtgadvocates.com/">GTG Advocates</a>.</p>
<p>Contact us at <a href="mailto:xxx@xxx.xxx">xxx@xxx.xxx</a>.</p>
</div>
</div>
</body>
</html>