-
Notifications
You must be signed in to change notification settings - Fork 0
/
socialmedia.html
87 lines (81 loc) · 2.24 KB
/
socialmedia.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Die beste Hundepension in Kärnten | SocialMedia</title>
<link rel="stylesheet" href="socialmediapage.css" />
<!--Icon Title-->
<link
rel="icon"
href="./img/logo/Hundepension_Logo_Stempel.png"
type="image/x-icon"
/>
<!--Link for SocialMedia Fonts-->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"
/>
<!--Font-->
<link
href="https://fonts.googleapis.com/css2?family=Work+Sans:wght@500;600&display=swap"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css2?family=Caveat:wght@700&display=swap"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css2?family=Nanum+Myeongjo:wght@700&display=swap"
rel="stylesheet"
/>
<!-- Google tag (gtag.js) -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=G-T4EBWZ3GVJ"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "G-T4EBWZ3GVJ");
</script>
</head>
<body>
<header>
<a class="startseiteanker" href="./index.html"
><span class="startseitespan"
><i class="fa fa-arrow-left"></i>Startseite</span
></a
>
</header>
<ul>
<li>
<a
href="https://www.youtube.com/channel/UCEYJ7imJmUSZiN_Wohg1nhw"
target="_blank"
>
<i class="fa fa-youtube" aria-hidden="true"></i>
<span> - Youtube</span>
</a>
</li>
<li>
<a
href="https://www.instagram.com/hundepension_bergparadies"
target="_blank"
>
<i class="fa fa-instagram" aria-hidden="true"></i>
<span> - Instagram</span>
</a>
</li>
<li>
<a href="https://www.facebook.com/Bergparadies/" target="_blank">
<i class="fa fa-facebook" aria-hidden="true"></i>
<span> - Facebook</span>
</a>
</li>
</ul>
</body>
</html>