-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
163 lines (132 loc) · 5.04 KB
/
index.html
File metadata and controls
163 lines (132 loc) · 5.04 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>JoeAbunga Tech</title>
<link href="css/styles.css" rel="stylesheet" type="text/css">
</head>
<body>
<header>
<img src="img/logo.png" alt="JoeAbunga Tech Logo" class="logo">
<nav>
<ul>
<li><a href=""></a></li>
<li><a href="#WhoAmI">About</a></li>
<li><a href="">Contact</a></li>
</ul>
</nav>
</header>
<section class="home-hero">
<div class="container">
<h1 class="title">Joseph Lombardi
<span>Working with you to achieve the future</span>
</h1>
<a href="" class="button button-accent">See My Work</a>
</div>
<a name="WhoAmI"></a>
</section>
<div class="container">
<section class="home-about">
<div class="home-about-textbox">
<h1>Who am I</h1>
<p>
My name's Joseph Lombardi and I've been facinated with techonology ever since I was young. I continued that passion into High School and College competing in multiple Hackathons, creating over half a dozen projects, and even winning awards for them. I also have taught at a Technology camp for the past three years teaching courses like Minecraft Modding using Javascript, Game Design with Unreal Engine 4, and Introduction to Java programing.
</p>
</div>
</section>
</div>
<section class="portfolio">
<h1>Some of my Work</h1>
<!-- portfolio item #01-->
<figure class="port-item">
<img src="img/portfolio-01.jpg" alt="Portfolio Item">
<figcaption class="port-desc">
<p>Gimgur</p>
<a href="https://devpost.com/software/gimgur" class="button button-accent button-small">Project Details</a>
</figcaption>
</figure>
<!-- portfolio item #02-->
<figure class="port-item">
<img src="img/portfolio-02.jpg" alt="Portfolio Item">
<figcaption class="port-desc">
<p>KinOc</p>
<a href="https://devpost.com/software/kinoc-kinect-oculus-vr-experience" class="button button-accent button-small">Project Details</a>
</figcaption>
</figure>
<!-- portfolio item #03-->
<figure class="port-item">
<img src="img/portfolio-03.jpg" alt="Portfolio Item">
<figcaption class="port-desc">
<p>Convoy</p>
<a href="https://devpost.com/software/convoy" class="button button-accent button-small">Project Details</a>
</figcaption>
</figure>
<!-- portfolio item #04-->
<figure class="port-item">
<img src="img/portfolio-04.jpg" alt="Portfolio Item">
<figcaption class="port-desc">
<p>Gotta Dry That Paint</p>
<a href="https://devpost.com/software/gotta-dry-that-paint" class="button button-accent button-small">Project Details</a>
</figcaption>
</figure>
<!-- portfolio item #05-->
<figure class="port-item">
<img src="img/portfolio-05.jpg" alt="Portfolio Item">
<figcaption class="port-desc">
<p>Website Source</p>
<a href="" class="button button-accent button-small">Project Details</a>
</figcaption>
</figure>
<!-- portfolio item #06-->
<figure class="port-item">
<img src="img/portfolio-06.jpg" alt="Portfolio Item">
<figcaption class="port-desc">
<p></p>
<a href="" class="button button-accent button-small">Project Details</a>
</figcaption>
</figure>
</section>
<section class="cta">
<div class="container">
<h1 class="title title-cta">Like What You See?
<span>Feel free to contact me</span>
</h1>
<a href="" class="button button-dark">Contact Me</a>
</div>
</section>
<footer>
<div class="container">
<div class="col-3">
<p>This site was built on HTML5 and CSS3. You can find more information on the tools and resources I have used for my past projects.</p>
</div>
<div class="col-1">
<ul class="unstyled-list">
<li><strong>Website</strong></li>
<li><a href="https://www.w3schools.com/">w3Shools</a></li>
<li></li>
<li></li>
</ul>
</div>
<div class="col-1">
<ul class="unstyled-list">
<li><strong>Computer Imaging</strong></li>
<li>Getting Edges</li>
<li>Tracking Object</li>
<li>Face Tracking</li>
<li>Resources</li>
</ul>
</div>
<div class="col-1">
<ul class="unstyled-list">
<li><strong>Computer Imaging</strong></li>
<li>Getting Edges</li>
<li>Tracking Object</li>
<li>Face Tracking</li>
<li>Resources</li>
</ul>
</div>
</div>
</footer>
</body>
</html>