-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
84 lines (82 loc) · 3.8 KB
/
about.html
File metadata and controls
84 lines (82 loc) · 3.8 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="/css/style.css">
</head>
<body>
<header class="top-header">
<div class="topnav">
<nav class="navbar navbar-dark bg-dark">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="projects.html">Projects</a>
</li>
<li class="nav-item">
<a class="nav-link" href="games.html">Games</a>
</li>
<li class="nav-item">
<a class="nav-link active" href="about.html">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="contact.html">Contact</a>
</li>
</ul>
</nav>
</div>
</header>
<section id="main">
<div class="container">
<article id="main-col">
<ul id="services">
<li>
<img src="/img/mga.jpg"/>
<h3>Bachelors Degree</h3>
<h3>Middle Georgia State University</h3>
<p>Bachelor of Science - Information Technology</p>
<p>Concentration: Software Engineering</p>
<p>Graduation Date: May 9, 2023</p>
<p>GPA: 3.92</p>
</li>
<li>
<img src="/img/augustaTech.jpg"/>
<h3>Associates Degree</h3>
<h3>Augusta Technical College, Augusta, GA</h3>
<p>Associate of Applied Science - Computer Programming</p>
<p>Technical Certificate of Credit: C++ Programmer</p>
<p>Technical Certificate of Credit: Java Programmer</p>
<p>Graduation Date: August 14, 2020</p>
<p>GPA: 4.0</p>
</li>
<li>
<h3>Other</h3>
<p>Participated in PyNight, a Python programming competition hosted by Booz Allen Hamilton since 2016. Earned 3rd place twice and 2nd place once.</p>
<p>Been an active member of PyAugusta, a local Python programming meetup since 2016.</p>
<p>Founding member of The Augusta Developer, a generalized monthly programming meetup that began in May 2018</p>
<p>Was a member of JavaScript Augusta from 2016 until 2018, when the meetup ended.</p>
<p><a href="https://github.com/EMSoftwareInnovators">Click here to view my Github page.</a></p>
</li>
</ul>
</article>
<aside id="sidebar">
<div class="dark">
<h3>Resume</h3>
<p>View or download my resume here.</p>
<iframe src="/doc/Resume25.pdf" width="100%" height="500px"></iframe>
</div>
</aside>
</div>
</section>
<footer>
<p>Robert Tammaro, Copyright © 2021-<span id="date"></span></p>
</footer>
<script>
var date = document.getElementById("date");
var thisYear = new Date();
thisYear = thisYear.getFullYear();
date.innerHTML = thisYear;
</script>
</body>
</html>