-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaboutme.html
30 lines (24 loc) · 1.03 KB
/
aboutme.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
---
layout: default
---
<div class="container">
<h2 class="subtitle">write | <span class"color-change">Code </span> | photograph</h2>
<hr>
<p>I make things with <a href src="#">cameras</a>, <a href src="#"> words</a>, and <a href src="#">code</a>. I am interested in storytelling, travel, and self-improvement. At the moment, I am slow traveling through Europe and learning Javascript. Have
a look at what I am currently <a href src="#now">working on</a>.</p>
<p>As a photographer (and a web developer), I have no formal training other than workshops and online resources. What I do have is an urge to understand myself and my surroundings, a never-ending curiosity, and a burning passion to create.</p>
</div>
<script type="text/javascript">
colorLinks("#8912FF");
function colorLinks(hexColor)
{
var links = document.getElementsByTagName("a");
for(var i=0;i<links.length;i++)
{
if(links[i].href)
{
links[i].style.color = hexColor;
}
}
}
</script>