-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
97 lines (80 loc) · 3.81 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
<!DOCTYPE html>
<html>
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-134254763-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-134254763-1');
</script>
<title>Homepage</title>
<link href="https://fonts.googleapis.com/css?family=Fira+Sans|Roboto" rel="stylesheet">
<link rel = "stylesheet" type = "text/css" href = "styles.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<meta charset = "UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="google-site-verification" content="QOrB6AYYvUD0OwxBHv1AJYCGQZyQ4fjCoFQw752VMUw" />
<link rel="shortcut icon" href="favicon.png" type="image/x-icon" />
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-9460921159156451"
crossorigin="anonymous"></script>
</head>
<body>
<div class = "container">
<div class="row">
<h1>I'm Joe Agnelli</h1>
<h3>Here's my <a href="Agnelli_Resume.pdf">resume</a></h3>
<h3>Here's some of my work</h3>
<ul style="list-style-type:none;">
<li><a href="neat/neat.html">NEAT</a></li>
<li><a href="flyby/flyby.html">FlyBy</a></li>
<li><a href="moon/overthemoon.html">Over The Moon</a></li>
<li><a href="shoot/shootemup.html">ShootEmUp!</a></li>
</ul>
<p>
I first fell in love with programming sophomore
year of high school when a friend invited me to work
on a video game with a group of students after classes.
I took computer science every year after that in high
school until I came to RIT where I began by studying
Human Centered Computing before switching into Web & Mobile
Computing and finally becoming a double major between both.
Currently I work as a TA during the school year whenever it
doesn't get in the way of my classes.
</p>
<p>
In the summer of 2018, I started working as
an Android developer for PatientKeeper in Waltham, MA. My experience
working for them was been amazing, but when school started in the fall,
I was only able to work part-time as a contractor for them.
Last summer, I went to San Francisco to take on a software engineering
internship with Uber working on their <a href="https://github.com/fusionjs/fusionjs">
open source JavaScript framework FusionJS.</a>
There, I was able to <a href = "https://github.com/fusionjs/fusionjs/pull/615">
improve the runtime performance of many Fusion's cli commands.</a>
</p>
<h3>Check out my <a href="https://github.com/LambStack/">GitHub</a></h3>
<h2>Contact Me</h2>
<h5>603-707-6626</h5>
<a href="mailto:jxa4717@rit.edu"><h5>jxa4717@rit.edu</h5></a>
<!-- Form is over engineered, replacing wiht h tags
<form action="action_page.php">
<div class="nameBox">
<label for="fName">First Name</label>
<input type="text" id="fName" name="fName" placeholder="Your name..">
</div>
<div class="nameBox">
<label for="lName">Last Name</label>
<input type="text" id="lName" name="lName" placeholder="Your last name..">
</div>
<label for="subject">Subject</label>
<textarea id="subject" name="subject" placeholder="Write something.."></textarea>
<input id = "submit" type="submit" value="Submit">
</form>
-->
<h3 id="thanks">Thanks for visiting!</h3>
</div>
</div>
</body>
</html>