-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
117 lines (113 loc) · 3.52 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<!DOCTYPE html>
<html>
<head>
<title>Ben Wencke</title>
<link rel="stylesheet" type="text/css" href="styles.css">
<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-68486722-6', 'auto');
ga('send', 'pageview', 'homepage');
</script>
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<div id="container">
<object type="image/svg+xml" data="logo.svg" id="logo">
<img src="logo.png">
</object>
<div id="buttons">
<a href="mailto:[email protected]" target="_blank" onclick="
ga('send', {
hitType: 'event',
eventCategory: 'Links',
eventAction: 'click',
eventLabel: 'Gmail'
});">
<div class="button">
<img src="gmail.png">
</div>
</a>
<a href="https://bwencke.wordpress.com" target="_blank" onclick="
ga('send', {
hitType: 'event',
eventCategory: 'Links',
eventAction: 'click',
eventLabel: 'Wordpress'
});">
<div class="button">
<img src="wordpress.png">
</div>
</a>
<a href="https://www.linkedin.com/in/bwencke" target="_blank" onclick="
ga('send', {
hitType: 'event',
eventCategory: 'Links',
eventAction: 'click',
eventLabel: 'LinkedIn'
});">
<div class="button">
<img src="linkedin.png">
</div>
</a>
<a href="https://github.com/bwencke" target="_blank" onclick="
ga('send', {
hitType: 'event',
eventCategory: 'Links',
eventAction: 'click',
eventLabel: 'GitHub'
});">
<div class="button">
<img src="github.png">
</div>
</a>
<a href="https://soundcloud.com/ben-wencke" target="_blank" onclick="
ga('send', {
hitType: 'event',
eventCategory: 'Links',
eventAction: 'click',
eventLabel: 'SoundCloud'
});">
<div class="button">
<img src="soundcloud.png">
</div>
</a>
<a href="https://facebook.com/bwencke" target="_blank" onclick="
ga('send', {
hitType: 'event',
eventCategory: 'Links',
eventAction: 'click',
eventLabel: 'Facebook'
});">
<div class="button">
<img src="facebook.png">
</div>
</a>
<a href="https://twitter.com/benwencke" target="_blank" onclick="
ga('send', {
hitType: 'event',
eventCategory: 'Links',
eventAction: 'click',
eventLabel: 'Twitter'
});">
<div class="button">
<img src="twitter.png">
</div>
</a>
<a href="https://www.youtube.com/user/doomrayz" target="_blank" onclick="
ga('send', {
hitType: 'event',
eventCategory: 'Links',
eventAction: 'click',
eventLabel: 'YouTube'
});">
<div class="button">
<img src="youtube.png">
</div>
</a>
</div>
</div>
</body>
</html>