-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
81 lines (74 loc) · 3 KB
/
index.html
File metadata and controls
81 lines (74 loc) · 3 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
75
76
77
78
79
80
81
<!DOCTYPE html>
<html>
<head>
<title>Big Fish Software</title>
<meta charset="utf-8">
<link href='http://fonts.googleapis.com/css?family=Open+Sans&subset=latin,latin-ext' rel='stylesheet' type='text/css'>
<link href="http://bigfishsoftware.hr/favicon.png" rel="icon" type="image/png" />
<style>
body { font-family: 'Open Sans', sans-serif; margin: 0 }
a { color: #0E3B7D }
#logo { margin: auto; margin-top: 100px; width: 282px }
#strip { background: #188CB8; color: white; margin: 40px 0px; text-align: center; padding: 20px }
#strip a { color: white; text-decoration: none }
#legal { font-size: smaller; text-align: center; margin: auto; color: grey }
#legal-long { display: none }
</style>
</head>
<body>
<div id="logo">
<img src="bigfish.png" alt="Big Fish">
</div>
<div id="strip">
<p>Developing versatile business solutions</p>
<p><a href="mailto:info@bigfish.software">info@bigfish.software</a></p>
</div>
<div id="legal">
<div id="legal-short">
Big Fish Software d.o.o.<br />
Zagreb, Croatia<br />
<a href="#" id="show-details">show details</a>
</div>
<div id="legal-long">
<p>
<b>Big Fish Software</b> d.o.o.<br/>
Savska cesta 13<br/>
10000 Zagreb<br />
Croatia
</p>
<p>
VAT Number: HR93985308350 (<a target="_blank" href="http://ec.europa.eu/taxation_customs/vies/vatResponse.html?memberStateCode=HR&number=93985308350">verify</a>)<br />
IBAN: HR6623400091110651272<br />
SWIFT code: PBZGHR2X
</p>
<p>
OIB: 93985308350<br />
MBS: 080905639<br />
MB(DZS): 4199464
</p>
<p>
Društvo je registrirano pri Trgovačkom sudu u Zagrebu.<br />
Račun otvoren kod Privredne banke Zagreb, u Zagrebu<br />
Temeljni kapital: 20.000 kn uplaćen u cijelosti.<br />
Direktor i član društva: Ivan Habunek
</p>
</div>
</div>
<script type="text/javascript">
var more = document.getElementById('show-details');
more.addEventListener('click', function(event) {
document.getElementById('legal-long').style.display = 'block';
document.getElementById('legal-short').style.display = 'none';
event.preventDefault();
});
</script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-58276938-1', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>