Skip to content

Commit

Permalink
added files
Browse files Browse the repository at this point in the history
  • Loading branch information
AcevedoJetter committed Dec 23, 2023
1 parent 29997cb commit b90e4de
Show file tree
Hide file tree
Showing 7 changed files with 167 additions and 1 deletion.
1 change: 1 addition & 0 deletions CNAME
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
acevedojetter.com
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,5 @@
# AcevedoJetter.github.io
# Personal Website

_URL_: [https://acevedojetter.com](https://acevedojetter.com/)

_Contact_: kevin (at) acevedojetter (dot) com
43 changes: 43 additions & 0 deletions contact.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="robots" content="noindex" />
<title>Kevin E. Acevedo Jetter</title>
<link rel="stylesheet" href="styles/style.css" />
</head>
<body>
<header>
<h1>Kevin E. Acevedo Jetter</h1>
<nav>
<ul>
<li><a href="./index">About</a></li>
<li><a href="./contact">Contact</a></li>
</ul>
</nav>
</header>
<main>
<h1>Contact</h1>

<hr />

<p>Email: kevin (at) acevedojetter (dot) com</p>
<p>
GitHub:
<a href="https://github.com/AcevedoJetter" style="color: #0645ad"
>AcevedoJetter</a
>
</p>
<p>
LinkedIn:
<a
href="https://www.linkedin.com/in/kevinacevedojetter/"
style="color: #0645ad"
>kevinacevedojetter</a
>
</p>

<hr />
</main>
</body>
</html>
Binary file added images/.DS_Store
Binary file not shown.
Binary file added images/favicon.ico
Binary file not shown.
49 changes: 49 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="robots" content="noindex" />
<title>Kevin E. Acevedo Jetter</title>
<link rel="stylesheet" href="styles/style.css" />
<link rel="icon" type="image/x-icon" href="./images/favicon.ico" />
</head>
<body>
<header>
<h1>Kevin E. Acevedo Jetter</h1>
<nav>
<ul>
<li><a href="./index">About</a></li>
<li><a href="./contact">Contact</a></li>
</ul>
</nav>
</header>
<main>
<h1>About Me</h1>

<hr />

<p>
I am a junior pursuing a major in Computer Science and Engineering (6-3)
and a minor in Latin American and Latino/a Studies at
<a href="https://www.mit.edu/" style="color: #0645ad">MIT</a>.
</p>

<p>
During this past summer, I was an Undergraduate Research Assistant in
the
<a href="https://electionlab.mit.edu/" style="color: #0645ad"
>MIT Election Data + Science Lab</a
>. During the summer of 2022, I was a Data Analyst intern at
<a href="https://www.bankofamerica.com/" style="color: #0645ad"
>Bank of America</a
>
where the team was responsible for Bank of America's enterprise Azure
Cloud implementation, automation, and quality assurance testing.
</p>

<p>Interests: Cybersecurity, Data Analysis, ML/AI, and Baseball.</p>

<hr />
</main>
</body>
</html>
69 changes: 69 additions & 0 deletions styles/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
body {
font-family: Arial, sans-serif;
font-size: 16px;
line-height: 1.5;
margin: 0;
padding: 0;
}

header {
background-color: #991212;
color: #fff;
padding: 1rem;
}

header h1 {
font-size: 28px;
margin: 0;
}

nav ul {
list-style: none;
margin: 0;
padding: 0;
}

nav li {
display: inline-block;
margin-right: 1rem;
}

nav a {
color: #fff;
text-decoration: none;
}

nav a:hover {
text-decoration: underline;
}

main {
max-width: 800px;
margin: 0 auto;
padding: 1rem;
}

main h2 {
margin-top: 2rem;
}

main a {
color: #333;
text-decoration: none;
}

main a:hover {
text-decoration: underline;
}

main p {
text-align: justify;
text-justify: inter-word;
}

footer {
background-color: #991212;
color: #fff;
padding: 1rem;
text-align: center;
}

0 comments on commit b90e4de

Please sign in to comment.