-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
48 lines (47 loc) · 2.2 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
<!DOCTYPE html>
<html lang="en" class="no-js">
<head>
<title>Thomas Bell</title>
<meta charset="utf-8" />
<link rel="icon" href="favicon.png" />
<link rel="stylesheet" href="assets/css/site.css" />
<script src="assets/js/jquery2.min.js"></script>
<script src="assets/js/require.js"></script>
<script src="assets/js/site.js"></script>
<!-- GOOGLE ANALYTICS -->
<script>
if (document.cookie.search("ga-optout=1") != -1)
window["ga-disable-UA-68824568-1"] = true;
</script>
<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','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-68824568-1', 'auto');
ga('send', 'pageview');
</script>
<!-- END GOOGLE ANALYTICS -->
</head>
<body>
<main>
<h1>Welcome!</h1>
<p>
You seem to have stumbled upon my website.
</p><p>
I am a newly minted adult who loves technology, especially software. This website hasn't seen a lot of
activity lately, but I am still searching for projects that are intriguing and rewarding. To get an idea of
what this website is about, see the <a href="apps">apps page</a>, which contains lots of interesting web
projects I worked on when I was in high school.
</p><p>
I'm hoping to be involved in more large-scale work, so I set up the <a href="projects">projects page</a>
for when that does happen. Right now, it contains a multi-user quiz app that I created for my friends to use.
</p><p>
Python has always been a special interest of mine - check out my
<a href="https://github.com/bell345">GitHub</a> page to see my Python work, which includes a command-line
TV guide, a pseudo-code interpreter and a very special program for translating
<a href="http://xkcd.com/1678/">GIFs into XLS files</a>.
</p>
</main>
</body>
</html>