-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
93 lines (84 loc) · 4.88 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<meta charset="UTF-8">
<title>Wecanfuture | Digital.</title>
<link rel="stylesheet" type="text/css" href="base.css">
<link href="https://fonts.googleapis.com/css?family=Karla" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link href='https://fonts.googleapis.com/css?family=Oswald' rel='stylesheet' type='text/css'>
<!-- Insert your favicons into ico folder use this link to generate https://www.favicon-generator.org/ -->
<link rel="apple-touch-icon" sizes="57x57" href="ico/apple-icon-57x57.png">
<link rel="apple-touch-icon" sizes="60x60" href="ico/apple-icon-60x60.png">
<link rel="apple-touch-icon" sizes="72x72" href="ico/apple-icon-72x72.png">
<link rel="apple-touch-icon" sizes="76x76" href="ico/apple-icon-76x76.png">
<link rel="apple-touch-icon" sizes="114x114" href="ico/apple-icon-114x114.png">
<link rel="apple-touch-icon" sizes="144x144" href="ico/apple-icon-144x144.png">
<link rel="apple-touch-icon" sizes="120x120" href="ico/apple-icon-120x120.png">
<link rel="apple-touch-icon" sizes="152x152" href="ico/apple-icon-152x152.png">
<link rel="apple-touch-icon" sizes="180x180" href="ico/apple-icon-180x180.png">
<link rel="icon" type="image/png" sizes="192x192" href="ico/android-icon-192x192.png">
<link rel="icon" type="image/png" sizes="32x32" href="ico/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="96x96" href="ico/favicon-96x96.png">
<link rel="icon" type="image/png" sizes="16x16" href="ico/favicon-16x16.png">
<link rel="manifest" href="ico/manifest.json">
<meta name="msapplication-TileColor" content="#ffffff">
<meta name="msapplication-TileImage" content="ico/ms-icon-144x144.png">
<meta name="theme-color" content="#ffffff">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-121367533-3"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
// UA-INSERT YOUR G ANALYTCIS CODE of you want to track
gtag('config', 'UA-');
</script>
</head>
<body>
<article>
<div class="wrapper">
<header>
<!-- replace your stuff -->
<img class="prof-pic" src="me.jpg" alt="Photo of Saint Warhead" />
<p class="user-name">
<a href="https://instagram.com/wecanfuture">@wecanfuture</a>
</p>
</header>
<main>
<div class="links">
<!-- https://www.bl.ink/ use this to generate "static and trackable links"
you can adjsut these links in bl.ink and insert them here -->
<a href="http://send.digital/sebastian-travel" class="link">Next Destination</a>
<a href="http://pages.news/sebastian-change" class="link">Inspiring Change</a>
<a href="https://wecanfuture.com" class="link">My Digital Blog</a>
</div>
</main>
<footer class="social-footer">
<div class="footer-social-icons">
<center>
<ul class="social-icons">
<!-- you can use all fontawesomes -->
<li><a href="https://www.facebook.com/basti.heye" class="social-icon"> <i class="fa fa-facebook"></i></a></li>
<li><a href="https://www.linkedin.com/in/sebastian-heye-a24575148/" class="social-icon"> <i class="fa fa-linkedin"></i></a></li>
<!-- replace 490000000000 (take care of your country code, e.g. +49 is just 49) with your number -->
<li><a href="https://api.whatsapp.com/send?phone=490000000000" class="social-icon"> <i class="fa fa-whatsapp"></i></a></li>
</ul>
</center>
</div>
<!-- remove this if you dont need -->
<div id="bottom" >
<a href="https://sebastianheye.de/unnoetigerdeutscherkrams-aka-impressum/" target="_blank" class="link" style="color:white;">Impressum</a>
</div>
</footer>
</div>
</article>
<!-- Video is muted & autoplays, placed after major DOM elements for performance & has an image fallback -->
<video autoplay loop id="video-background" muted plays-inline>
<!-- get video from pixabay or pexels and insert the video play -->
<source src="https://player.vimeo.com/external/200092486.sd.mp4?s=613baf0e2aaeb3cd49fcc342b3fbb12f71a3acaf&profile_id=164" type="video/mp4">
</video>
</body>
</html>