-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
50 lines (49 loc) · 2.57 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset = "UTF-8">
<meta name="viewport" content ="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Benedict Ortiz - Personal Website</title>
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<div id = "root">
<div>
<div class = "content">
<ul class = "header">
<li><a class ="home-link" href="/index.html">Home</a></li>
<li><a class ="resume-link" href="/files/resume_benortiz.pdf">Resume</a></li>
<li><a class ="blog-link" href="/blog.html">Blog</a></li>
<li><a class ="project-link" href="/project.html">Projects</a></li>
</ul>
<h1>Benedict Ortiz</h1>
<div class = "social">
<a href ="https://github.com/Ben-Ortiz" target ="_blank" rel="noopener noreferrer">
<img src = "images/icon-github.svg" alt ="github logo">
</a>
<a href ="mailto:[email protected]" target ="_blank" rel="noopener noreferrer">
<img src = "images/icon-mail.svg" alt ="linkedin logo">
</a>
<a href ="https://www.linkedin.com/in/benedictortiz/" target ="_blank" rel="noopener noreferrer">
<img src = "images/icon-linkedin.svg" alt ="linkedin logo">
</a>
</div>
<div>
<h4>Hello,</h4>
<p>
My name is Benedict Ortiz and I'm currently a Programmer/Analyst for IDA. I graduated from Rutgers University with a Bachelors in CS in January 2022.
</p>
<p>
I currently like to go to the gym, listen to a variety of music(Currently listening to Linkin Park, and adjacent bands), watch all types of movies & shows (Arcane is one of my favorites), and play many different types of PC video games (POE2, Palia, and League of Legends on occasion).
</p>
<p>
Feel free to contact me via email or connect on linkedin.
</p>
</div>
</div>
</div>
</div>
<script src = "js/index.js"></script>
</body>
</html>