-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaboutme.html
More file actions
60 lines (52 loc) · 2.14 KB
/
aboutme.html
File metadata and controls
60 lines (52 loc) · 2.14 KB
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
<!DOCTYPE HTML>
<html lang="en">
<head>
<title>Theo K. | About me Page</title>
<meta charset="UTF-8">
<link rel="stylesheet" type="text/css" href="navigator.css">
<link rel="stylesheet" type="text/css" href="canvas.css">
<link rel="stylesheet" type="text/css" href="text.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Karla|Heebo|Montserrat|Nunito">
</head>
<section id="nav-bar">
<ul class="n">
<li class="n"><a href="index.html">Home</a></li>
<li class="n"><a href="projects.html">Projects</a></li>
<li class="n"><a class="active" href="aboutme.html">About me</a></li>
</ul>
</section>
<h7 class="text-hover">About me</h7><br>
<h8>Hi, my name is Theo.</h8>
<br><h8>I studied Computer Systems Engineering at the University of Warwick.</h8>
<br><h8>I am constantly learning about new technologies in order to become</h8>
<br><h8>the best software developer that I can be.</h8>
<br>
<a class="download-btn" href="https://docs.google.com/document/d/1uNUf0FumwR4AZxHp9Uf3IGLlS6WJbCn-43Ykdc6ZVfc/edit?usp=sharing" target="_blank">View CV</a>
<div onclick=linkedin() class="linkedin"></div>
<div>
<canvas id="canvas"></canvas>
<script type="text/javascript" src="canvas3.js"></script>
<script>
function _toArray(arr) {
return Array.isArray(arr) ? arr : Array.from(arr)
}
function makeSpans (selector) {
var _document$querySelect = document.querySelectorAll(selector)
var _document$querySelect2 = _toArray(_document$querySelect)
var elements = _document$querySelect2.slice(0)
return elements.map(function (element) {
var text = element.innerText.split('')
var spans = text.map(function (letter) {
return '<span>' + letter + '</span>'
}).join('')
return element.innerHTML = spans
})
}
makeSpans('h7')
function linkedin() {
window.open(
"https://uk.linkedin.com/in/theo-koulas-02a8b721a", "_blank")
}
</script>
</body>
</hmtl>