Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions contact.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./styles.css">
<title>Contact</title>
</head>
<body>
<div class="menu">
<div class="menu-item"><a href="index.html">About Me</a></div>
<div class="menu-item"><a href="projects.html">Projects</a></div>
<div class="menu-item"><a href="contact.html">Contact</a></div>
</div>

<div class="content">
<h1>Contact</h1>
<p>This is my projects page.</p>
</div>
</body>
</html>
35 changes: 30 additions & 5 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,24 +5,49 @@
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./styles.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.3.1/dist/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<title>Basic Webpage</title>
</head>

<body>
<!-- Here is a section for menu bar -->
<div class="menu">
<div class="menu-item"><a href="index.html">About Me</a></div>
<div class="menu-item"><a href="#">Projects</a></div>
<div class="menu-item"><a href="#">Contact</a></div>
<div class="menu-item"><a href="projects.html">Projects</a></div>
<div class="menu-item"><a href="contact.html">Contact</a></div>
</div>
<!-- Here is a section for the content of your page -->
<div class="content">
<h1>About Me</h1>
<p>
This is an example of some placeholder paragraph text. The h1 tag above
is an example of a Heading. The div tags above are examples of containers
within which each "section" of the webpage is contained.
Hi, I'm Alejandra Andino, a first-year student at Northeastern University studying
Computer Science and Business Administration. I'm passionate about using technology
to create meaningful, accessible solutions especially for marginalized
communities that are often overlooked in the tech space.
My interests lie at the intersection of software development, data, and entrepreneurship,
where I hope to build tools that make information and opportunities more equitable.
Beyond academics, I enjoy mentoring students, exploring new ideas in tech, and continuously
challenging myself to grow both personally and professionally.
</p>

<a href="https://www.linkedin.com/in/alejandra-andino-9b21ab300">LinkedIn</a>

<p>
hi!
</p>

<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.14.7/dist/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.3.1/dist/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>

<button type="button" class="btn btn-primary">Primary</button>







</div>
</body>

Expand Down
21 changes: 21 additions & 0 deletions project.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./styles.css">
<title>Projects</title>
</head>
<body>
<div class="menu">
<div class="menu-item"><a href="index.html">About Me</a></div>
<div class="menu-item"><a href="projects.html">Projects</a></div>
<div class="menu-item"><a href="contact.html">Contact</a></div>
</div>

<div class="content">
<h1>Projects</h1>
<p>This is my projects page.</p>
</div>
</body>
</html>
2 changes: 1 addition & 1 deletion styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
/* The body class targets the <body> tag in your html file */
body {
background-color: rgb(227, 219, 216);
font-family: "Karla", sans-serif;
font-family: "Times New Roman", sans-serif;
margin: 0;
}

Expand Down