-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathimpressum.php
136 lines (106 loc) · 2.48 KB
/
impressum.php
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Pi Design Group Darmstadt</title>
<meta name="description" content="">
<meta name="author" content="">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<link rel="shortcut icon" href="images/favicon.ico">
<link rel="apple-touch-icon" href="images/apple-touch-icon.png">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/foundation.css"/>
<script src="js/custom.modernizr.js"></script>
<script src="js/jquery.js"></script>
<script src="js/easing.js"></script>
<script src="js/jquery.debouncedresize.js"></script>
<script src="js/script.js"></script>
<style type="text/css">
li{
line-height: 18px;
}
h1{
margin-bottom: 3px;
font-family: kl !important;
font-size: 65px;
}
p{
line-height: 18px;
}
/*.websites a{
font-size: 19px;
font-family: km !important;
}*/
.text,.img{
float: left;
z-index: 33;
}
.img{
margin-bottom: -24px;
}
div[bg]{
right: 0 !important
}
.text{
margin-top: 20px;
width: 446px;
}
div[bg]{
opacity: 0;
}
.website_wrapper{
opacity: 0;
position: fixed;
bottom: 271px;
left: 50%;
margin-left: -510px;
z-index: 1000;
width: 906px;
}
.always{
opacity: 1 !important;
}
</style>
</head>
<body>
<?php include ("header.php"); ?>
<div style="background:url(img/background_agentur/Bachground_Agentur.png);" bg="0" class="bg1"></div>
<div class="website_wrapper">
<div class="text">
<div class="websites active">
<h1 style="margin-bottom:20px">Impressum</h1>
<p>
<span>PI DESIGN GROUP</span><br>
Im Hauptbahnhof 20<br>
Eingangshalle Hauptbahnhof<br>
64293 Darmstadt
</p>
<p>Tel. 06151. 90677-90<br>
Fax. 06151. 90677-93<br>
E-Mail: <a class="maillink blod" href="mailto:info@pi-design.de"><strong>info@pi-design.de</strong></a>
</p>
<p></p>
<p>Verantwortlich im Sinne des Presserechts<br>
Dipl. Designer Jörg Walter</p>
<p>
Inhaber:<br>
Dipl. Designer Cyrus Kosrowi<br>
Dipl. Designer Jörg Walter
<br>USt-IdNr.: DE170396560
</p>
</div>
</div>
</div>
<div class="back_grad"></div>
<?php include ("footer.php"); ?>
<script type="text/javascript">
$(document).ready(function(){
setTimeout(function(){
$('.website_wrapper,div[bg]').animate({opacity:1}, 750,function(){
$('div[bg]').addClass('always');
});
},100)
});
</script>
</body>
</html>