-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
114 lines (103 loc) · 6.25 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="Kristian's creative and engineering portfolio projects!">
<meta name="author" content="Kristian Zadlo">
<meta property="og:site_name" content="Kristian Zadlo's Portfolio">
<meta property="og:title" content="Kristian Zadlo's Portfolio" />
<meta property="og:description" content="I have some fun projects to show you! This includes AR, design, film, engineering, and photography work I've completed since entering college." />
<meta property="og:image" itemprop="image" content="./images/Thumbnails/main.png">
<meta property="og:url" itemprop="image" content="https://kristianz.github.io">
<meta property="og:type" content="website" />
<title>Kristian Zadlo's Project Website</title>
<!-- Bootstrap core CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/5.0.0-alpha1/css/bootstrap.min.css" integrity="sha384-r4NyP46KrjDleawBgD5tp8Y7UzmLA05oM1iAEQ17CSuDqnUK2+k9luXQOfXJCJ4I" crossorigin="anonymous" />
<!-- Favicons -->
<link rel="manifest" href="https://getbootstrap.com/docs/5.0/assets/img/favicons/manifest.json">
<meta name="theme-color" content="#7952b3">
<link rel="apple-touch-icon" href="https://getbootstrap.com/docs/5.0/assets/img/favicons/apple-touch-icon.png" sizes="180x180">
<link rel="stylesheet" href="./index.css">
<link rel="stylesheet" href="./hover-effect.css">
</head>
<body style="background-color: black;">
<header>
<div class="navbar fixed-top justify-content-center">
<strong class="name"><a style="text-decoration: none; color: white;" href="https://kristianz.github.io/">Kristian Zadlo</a></strong>
<div class="social">
<a href="https://www.instagram.com/krystian.za/">
<i class="fab fa-instagram" data-toggle="tooltip" data-placement="bottom" title="Instagram"></i>
</a>
<a href="https://www.youtube.com/channel/UCnacNfYafCVEehgPlrhnQ3g">
<i class="fab fa-youtube" data-toggle="tooltip" data-placement="bottom" title="YouTube"></i>
</a>
<a href="https://www.linkedin.com/in/k-zadlo/">
<i class="fab fa-linkedin" data-toggle="tooltip" data-placement="bottom" title="LinkedIn"></i>
</a>
<a href="./Resume.pdf">
<i class="fas fa-file" data-toggle="tooltip" data-placement="bottom" title="Resume"></i>
</a>
<script type="text/javascript" language="javascript">
<!--
// Email obfuscator script 2.1 by Tim Williams, University of Arizona
// Random encryption key feature coded by Andrew Moulden
// This code is freeware provided these four comment lines remain intact
// A wizard to generate this code is at http://www.jottings.com/obfuscator/
{ coded = "[email protected]"
key = "lh8I6eSHogdwNcRzfrt7PQMkC14VFxmajLXsuObWZnyYDBv25TqpGi0K3JUEA9"
shift=coded.length
link=""
for (i=0; i<coded.length; i++) {
if (key.indexOf(coded.charAt(i))==-1) {
ltr = coded.charAt(i)
link += (ltr)
}
else {
ltr = (key.indexOf(coded.charAt(i))-shift+key.length) % key.length
link += (key.charAt(ltr))
}
}
document.write("<a href='mailto:"+link+"'><i class=\"fas fa-at\" data-toggle=\"tooltip\" data-placement=\"bottom\" title=\"Email\"></i></a>")
}
//-->
</script><noscript>Sorry, you need Javascript on to email me.</noscript>
</div>
</div>
</header>
<main>
<div class="container-fluid px-0" style="padding-top: 70px;">
<div class="row justify-content-left position-relative">
<p class="key ar p-0">Mobile AR</p>
<div id="ar-projects" class="project scrollable"></div>
</div>
<div class="row justify-content-left position-relative">
<p class="key design p-0">Design</p>
<div id="design-projects" class="project scrollable"></div>
</div>
<div class="row justify-content-left position-relative">
<p class="key film p-0">Film</p>
<div id="film-projects" class="project scrollable"></div>
</div>
<div class="row justify-content-left position-relative">
<p class="key engineering p-0">Engineering</p>
<div id="engineering-projects" class="project scrollable"></div>
</div>
<div class="row justify-content-left position-relative">
<p class="key photography p-0">Photography</p>
<div id="photography-projects" class="project scrollable"></div>
</div>
<div class="row justify-content-left position-relative">
<p class="key extracurricular p-0">Extracurricular</p>
<div id="extracurricular-projects" class="project scrollable"></div>
</div>
</div>
<div id="content"></div>
</main>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js" integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/5.0.0-alpha1/js/bootstrap.min.js" integrity="sha384-oesi62hOLfzrys4LxRF63OJCXdXDipiYWBnvTl9Y9/TRlw5xlKIEHpNyvvDShgf/" crossorigin="anonymous"></script>
<script src="https://kit.fontawesome.com/4e1bb5b64a.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js" integrity="sha384-ZvpUoO/+PpLXR1lu4jmpXWu80pZlYUAfxl5NsBMWOEPSjUn/6Z/hRTt8+pR6L4N2" crossorigin="anonymous"></script>
<script src="./index.js" type="text/javascript"></script>
</body>
</html>