-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
138 lines (114 loc) · 3.67 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
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
137
138
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="utf-8">
<title>Kontakt | animatn studio</title>
<link rel="icon" type="image/x-icon" href="assets/2022-01-23_animatn_v6_webicon.png">
<style>
@font-face {
font-family: animatnCaps;
src: url(assets/AnimatnCaps-Regular.otf);
}
* {
font-family: animatnCaps;
}
html,
body {
align-items: center;
display: flex;
flex-direction: column;
font-family: animatnCaps;
text-align: center;
justify-content: center;
}
.horizontalMenu {
display: flex;
gap: 12px;
}
.horizontalMenu>div {
text-align: center;
}
.horizontalMenu>div>div {
align-items: center;
background-color: #333;
border-radius: 5px;
color: #fff;
display: flex;
font-size: 24px;
height: 50px;
justify-content: center;
width: 100px;
}
</style>
</head>
<!--This is a comment. Comments are not displayed in the browser-->
<body>
<table style="width:100%">
<tr>
<td style="text-align:right;width:210px;">
</td>
<!-- animatn Logo-->
<td style="text-align:center;width:210px;">
<a href="https://animatn.de" title="animatn.de">
<img src="assets/2022-01-23_animatn_v6_black.png" alt="animatn studio" style="width:210px;">
</a>
</td>
<!--Social Icons-->
<td style="text-align:left;width:210px;color:white;">
________
<a href="https://www.youtube.com/@animatn" title="YouTube" target="_blank">
<img src="assets/YouTube_logo_2017.svg" alt="YouTube" style="height:18px;"></a>
.
<a href="https://sketchfab.com/animatn" title="Sketchfab" target="_blank">
<img src="assets/Sketchfab_logo.svg" alt="Sketchfab" style="height:20px;"></a>
.
<a href="https://www.instagram.com/animatnstudio" title="Insta" target="_blank">
<img src="assets/Instagram_logo_2022.svg" alt="Instagram" style="height:20px;"></a>
.
<a href="https://www.xing.com/profile/Marten_Reiss" title="Xing" target="_blank">
<img src="assets/Xing_logo_2021.svg" alt="Xing" style="height:20px;"></a>
</td>
</tr>
</table>
<p>
</p>
<div class="horizontalMenu" style="font-size:18px;">
<!-- Menüleiste -->
<div>
<!--<div>Rounded Button</div>-->
<a href="projects" title="Projekte">Projekte</a>
</div>
<div>
<a href="about-me" title="Über mich">Tomaydo</a>
</div>
<div>
<b>Kontakt</b>
</div>
</div>
<!-- individueller Seiten-Content -->
<p>
<!-- <h3>Kontakt</h3> -->
<br>
<table style="width:50%">
<tr>
</td>
<td style="text-align:center;">
Marten Reiß | animatn studio<br>
Wolfenbütteler Straße 83<br>
38102 Braunschweig<br>
<br>
<del>Lützerath 9</del><br>
<del>41812 Erkelenz</del><br>
<br>
Tel. +49 160 2767858<br>
tomaydo <img src="assets/animatn-aet.svg" alt="ät" style="height:12px;"> animatn de
</td>
</tr>
</table>
</p>
<p>
</p>
<script>
</script>
</body>
</html>