Skip to content

Commit

Permalink
added multiple pages and also figure out some color schemes
Browse files Browse the repository at this point in the history
  • Loading branch information
Aragya1642 committed Jun 18, 2024
1 parent 0dddb53 commit aaef26a
Show file tree
Hide file tree
Showing 3 changed files with 85 additions and 28 deletions.
47 changes: 19 additions & 28 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
<!--Aragya Goyal Personal Portfolio Website-->
<!-- Aragya Goyal Personal Portfolio Website -->
<!-- Link to Website: https://aragya1642.github.io/ -->
<!-- Color Scheme: https://coolors.co/2a2c24-92140c-b57f50-faf0ca-f7f5f5 -->

<!-- Headers numbered through 1-6 with 1 being the largest and 6 being smallest -->

Expand All @@ -7,42 +9,31 @@

<style>
body {
background-color: rgb(197, 183, 52);
background-color: rgb(247, 245, 245);
}

h1 {
color: black;
color: rgb(42, 44, 36);
text-align: center;
font-family:Verdana, Geneva, Tahoma, sans-serif;
}
</style>

<body>
<h1>Aragya Goyal</h1>
<header>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="pages/projects.html">Projects</a></li>
<li><a href="pages/blogs.html">Blogs</a></li>
</ul>
</nav>
</header>

<h1>aragya goyal</h1>
<p>Junior Computer Engineering Student at the University of Pittsburgh</p>

<h2>Experience</h2>
<ul>
<li><h4>Carnegie Mellon University Robotics Institute</h4></li>
<ul>
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ul>

<li><h4>Society of Astronautics and Rocketry</h4></li>
<ul>
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ul>

<li><h4>Panther Racing (FSAE)</h4></li>
<ul>
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ul>
</ul>

</body>


</html>
33 changes: 33 additions & 0 deletions pages/blogs.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
<!DOCTYPE html>
<html>

<style>
body {
background-color: rgb(247, 245, 245);
}

h1 {
color: rgb(42, 44, 36);
text-align: center;
font-family:Verdana, Geneva, Tahoma, sans-serif;
}
</style>

<body>
<header>
<nav>
<ul>
<li><a href="../index.html">Home</a></li>
<li><a href="projects.html">Projects</a></li>
<li><a href="blogs.html">Blogs</a></li>
</ul>
</nav>
</header>

<h1>blogs</h1>
<p>Junior Computer Engineering Student at the University of Pittsburgh</p>

</body>


</html>
33 changes: 33 additions & 0 deletions pages/projects.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
<!DOCTYPE html>
<html>

<style>
body {
background-color: rgb(247, 245, 245);
}

h1 {
color: rgb(42, 44, 36);
text-align: center;
font-family:Verdana, Geneva, Tahoma, sans-serif;
}
</style>

<body>
<header>
<nav>
<ul>
<li><a href="../index.html">Home</a></li>
<li><a href="projects.html">Projects</a></li>
<li><a href="blogs.html">Blogs</a></li>
</ul>
</nav>
</header>

<h1>my projects</h1>
<p>Junior Computer Engineering Student at the University of Pittsburgh</p>

</body>


</html>

0 comments on commit aaef26a

Please sign in to comment.