-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
140 lines (125 loc) · 4.04 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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
<!DOCTYPE HTML>
<html>
<head>
<title>Khalob Cognata - Home</title>
<link rel="shortcut icon" href="images/favicon.ico" type="image/x-icon" />
<meta charset="utf-8" />
<!-- Background source: https://www.dropbox.com/s/bxebw1fqtttmdog/low-poly-texture-19.png?dl=0 -->
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="assets/css/main.min.css" />
<!-- Google Analytics -->
<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', 'https://www.google-analytics.com/analytics.js', 'ga');
ga('create', 'UA-88900400-1', 'auto');
ga('send', 'pageview');
</script>
</head>
<body class="is-loading">
<!-- Wrapper -->
<div id="wrapper">
<div id="navWrapper2">
<!-- navWrapper -->
<div id="navWrapper">
<!-- Title -->
<div class="outer">
<div class="inner" id="titleDiv"> Home </div>
</div>
<!-- Main -->
<section id="main" class="homepage">
<header>
<h1 id='homepage-title'> </h1>
</header>
<ul class="icons">
<li class="page-link">
<a href="https://github.com/Khalob" title="Github">
<i class="fab fa-github fa-2x"></i>
</a>
</li>
<li class="page-link" id="projectButton">
<a title="Projects">
<i class="fas fa-folder fa-2x"></i>
</a>
</li>
<li class="page-link">
<a href="./resume" title="Résumé">
<i class="fas fa-file-pdf fa-2x"></i>
</a>
</li>
<li class="page-link" id="contactButton">
<a title="Contact Me">
<i class="fas fa-envelope fa-2x"></i>
</a>
</li>
</ul>
<!-- Email Text Bubble -->
<div class="bubbleWrapper closed">
<div class="pinched" id="emailBubble">
Feel free to contact me at
<p id="js-copytextarea" style="padding:0px; margin:0px;">[email protected] </p>
<hr style="margin:auto; width:16em; padding:0px; margin-bottom: 10px">
<button id="js-textareacopybtn"> Copy </button>
or
<button><a href="mailto:[email protected]"> Email </a></button>
</div>
</div>
</section>
<!-- Project Buttons -->
<div id="projWrapper">
<ul class="icons2">
<section id="main3">
<li class="page-link">
<a class="projectIcon" style="background-image: url(images/mobiledev.png);"
href="projects/mobiledev" title="Mobile Development"></a>
</li>
</section>
<section id="main3">
<li class="page-link">
<a class="projectIcon" style="background-image: url(images/alexa.png);"
href="projects/alexa" title="Alexa Skill Development"></a>
</li>
</section>
<section id="main3">
<li class="page-link">
<a class="projectIcon" style="background-image: url(images/webdev.png);"
href="projects/webdev" title="Web Development"></a>
</li>
</section>
<section id="main3">
<li class="page-link">
<a class="projectIcon" style="background-image: url(images/unity.png);"
href="projects/unity" title="Unity Projects"></a>
</li>
</section>
<section id="main3">
<li class="page-link">
<a class="projectIcon" href="projects/grocery/list" title="Grocery List">
<i class="fas fa-clipboard-list"></i>
</a>
</li>
</section>
</ul>
</div>
</div>
</div>
<!-- Footer -->
<footer id="footer">
<ul class="footerList">
<li>
<div id="copyLeft">©</div>
</li>
<li>
<div id="curDate">May 21, 2017</div>
</li>
</ul>
</footer>
</div>
<!-- Scripts -->
<script type="text/javascript" src="assets/js/common.min.js"></script>
<script async defer type="text/javascript" src="assets/js/home.min.js"></script>
</body>
</html>