-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
125 lines (100 loc) · 4.1 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
118
119
120
121
122
123
124
125
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Emre Isik</title>
<meta name="description" content="You are visiting my personal website. Here are just some informations about me. Don't be shy, visit the site." />
<meta name="keywords" content="emre, isik, personal website, portfolio, mreturkey, turkey, germany" />
<meta name="twitter:site" content="@mreturkey" />
<link href="https://fonts.googleapis.com/css?family=Montserrat:200,400,700,900" rel="stylesheet">
<link rel="stylesheet" href="https://cdn.rawgit.com/konpa/devicon/df6431e323547add1b4cf45992913f15286456d3/devicon.min.css">
<link rel="stylesheet" href="css/index.css">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-131463689-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-131463689-1');
</script>
</head>
<body>
<div class="background-off"></div>
<div class="background-on"></div>
<header>
<a class="text-logo" href="/">isikemre.de</a>
<nav>
<ul>
<li>
<a href="projects.html">Projects</a>
</li>
<li>
<a href="about.html">About</a>
</li>
<li>
<span class="tippy-me-contact">Contact</span>
</li>
</ul>
</nav>
</header>
<!--
Hey, lovely source code reader!
If you are looking for the source code, go on...
But if you interested in my person, you can write me a mail. :-)
-->
<section>
<div class="name">Emre <span class="trigger-light">Işık</span></div>
<div class="title"><b>Dev</b>Ops</div>
<div class="subtitle"><b>+</b> Full Stack Developer</div>
<div class="subtitle"><b>+</b> UI Designer</div>
<div class="skills">
<i class="devicon-java-plain"></i>
<i class="devicon-go-plain"></i>
<i class="devicon-linux-plain"></i>
<i class="devicon-docker-plain"></i>
<i class="devicon-php-plain"></i>
<i class="devicon-javascript-plain"></i>
<i class="devicon-html5-plain"></i>
<i class="devicon-css3-plain"></i>
<i class="devicon-photoshop-plain"></i>
<i class="devicon-illustrator-plain"></i>
</div>
</section>
<div id="contact-text" style="display: none;">
<p>
You can contact me via E-Mail.<br>
<i>[email protected]</i>
</p>
</div>
<script src="https://code.jquery.com/jquery-3.3.1.min.js" integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8=" crossorigin="anonymous"></script>
<script src="https://unpkg.com/tippy.js@3/dist/tippy.all.min.js"></script>
<script type="text/javascript">
$('document').ready(function() {
var hintTextScheduleId = setTimeout(function() {
$('.trigger-light').addClass('show-hint');
}, 4 * 1000);
$('.trigger-light').hover(function() {
$('.background-off').stop().fadeToggle(300, 'swing');
$('.trigger-light').removeClass('show-hint');
clearTimeout(hintTextScheduleId);
});
});
tippy('.tippy-me-contact', {
content: document.getElementById('contact-text').innerHTML,
delay: 100,
arrow: true,
allowHTML: true,
arrowType: 'round',
interactive: true,
trigger: 'click',
performance: true,
size: 'large',
duration: 200,
});
</script>
</body>
</html>