-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
177 lines (173 loc) · 6.1 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
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
164
165
166
167
168
169
170
171
172
173
174
175
176
177
<!DOCTYPE html>
<html>
<head>
<title>Jacob Sussman</title>
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, user-scalable=no"
/>
<link rel="stylesheet" href="assets/css/main.css" />
</head>
<body class="is-preload">
<!-- Header -->
<section id="header">
<header class="major">
<h1>Jacob Sussman</h1>
<p>Founder of BitByBite • Marquette University • Caterpillar</p>
</header>
</section>
<!-- One -->
<section id="one" class="main special">
<div class="container">
<!-- <span class="image fit primary"
><img src="images/pic01.jpg" alt=""
/></span> -->
<div class="content">
<header class="major">
<h2>A Little About Me</h2>
</header>
<p>
Hello! My name is Jacob Sussman and I am a senior computer science
student at Marquette University. When I'm not studying, I like to
stay busy with coding, playing guitar, cooking, and exercising with
friends. In addition to my studies, I am the founder of
<a href="https://bitbybite.xyz/">BitByBite</a>, a software
development firm focused on using artificial intelligence to solve
real-world problems. I am always seeking new challenges and
opportunities to grow and learn as a developer.
</p>
</div>
<a href="#two" class="goto-next scrolly">Next</a>
</div>
</section>
<!-- Two -->
<section id="two" class="main special">
<div class="container">
<!-- <span class="image fit primary"
><img src="images/pic02.jpg" alt=""
/></span> -->
<div class="content">
<header class="major">
<h2>My Stack</h2>
</header>
<p>
I love to work with up-to-date technologies to create efficient and
well-designed websites. My stack consists of React & CSS on the
front-end, and GraphQL & Firebase on the back-end. I also use the
latest frameworks and libraries, such as Next.js/NextUI, to maximize
my productivity and create beautiful breathable applications.
</p>
<ul class="icons-grid">
<li>
<span class="icon major brands fa-react"></span>
<h3>React</h3>
</li>
<li>
<span class="icon major brands fa-js-square"></span>
<h3>TypeScript</h3>
</li>
<li>
<span class="icon major brands fa-sketch"></span>
<h3>Sketch</h3>
</li>
<li>
<span class="icon major brands fa-github"></span>
<h3>Github</h3>
</li>
</ul>
</div>
<a href="#three" class="goto-next scrolly">Next</a>
</div>
</section>
<!-- Three -->
<section id="three" class="main special">
<div class="container">
<!-- <span class="image fit primary"
><img src="images/pic03.jpg" alt=""
/></span> -->
<div class="content">
<header class="major">
<h2>One more thing</h2>
</header>
Looking to build beatiful applications? Have ideas that could change
the future or maybe you just want to chat about machine learning? I'd
love to hear from you!
<p></p>
</div>
<a href="#footer" class="goto-next scrolly">Next</a>
</div>
</section>
<section id="footer">
<div class="container">
<header class="major">
<h2>Get in touch</h2>
</header>
<form method="post" action="process.php">
<div class="row gtr-uniform">
<div class="col-6 col-12-xsmall">
<input type="text" name="name" id="name" placeholder="Name" />
</div>
<div class="col-6 col-12-xsmall">
<input type="email" name="email" id="email" placeholder="Email" />
</div>
<div class="col-12">
<textarea
name="message"
id="message"
placeholder="Message"
rows="4"
></textarea>
</div>
<div class="col-12">
<ul class="actions special">
<li>
<input type="submit" value="Send Message" class="primary" />
</li>
</ul>
</div>
</div>
</form>
</div>
<footer>
<ul class="icons">
<li>
<a
href="https://github.com/Jacob-Sussman"
class="icon brands fa-github"
><span class="label">Github</span></a
>
</li>
<li>
<a
href="https://www.linkedin.com/in/jacob-sussman/"
class="icon brands alt fa-linkedin"
><span class="label">LinkedIn</span></a
>
</li>
<li>
<a
href="mailto:jacob@bitbybite.xyz"
class="icon solid alt fa-envelope"
><span class="label">Email</span></a
>
</li>
</ul>
<ul class="copyright">
<li>© <a href="https://bitbybite.xyz/">BitByBite</a> 2023</li>
<li>Design: Jacob Sussman</li>
<!-- <li>Demo Images: <a href="http://unsplash.com">Unsplash</a></li> -->
<li>The singularity is nearer</li>
</ul>
</footer>
</section>
<!-- Scripts -->
<script src="assets/js/jquery.min.js"></script>
<script src="assets/js/jquery.scrollex.min.js"></script>
<script src="assets/js/jquery.scrolly.min.js"></script>
<script src="assets/js/browser.min.js"></script>
<script src="assets/js/breakpoints.min.js"></script>
<script src="assets/js/util.js"></script>
<script src="assets/js/main.js"></script>
</body>
</html>