Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
rubyjlp authored Jun 29, 2024
1 parent 350361b commit 9fee891
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 7 deletions.
14 changes: 13 additions & 1 deletion islt_7310/about.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,19 @@ <h3>Education</h3>
</main>

<nav>

<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="reflection.html">Reflection</a></li>
<div class = "dropdown">
<li class = "dropdown"><a href="projects.html">Projects</a></li>
<ul> <div class = "dropdown-content">
<li><a href="#link1.html">Link 1</a></li>
<li><a href="#link2.html">Link 2</a></li>
<li><a href="#link3.html">Link 3</a></li>
</div> </ul>
</div>
</ul>
</nav>

<footer>
Expand Down
14 changes: 11 additions & 3 deletions islt_7310/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<link rel="stylesheet" href="mystyles.css">
<link rel="stylesheet" href="nav.css">
</head>
<!--This is a very barebones template!-->
<!--This is a very barebones home page!-->
<body>
<header>
<h1>Ruby Landau-Pincus</h1>
Expand All @@ -22,8 +22,16 @@ <h3>Home</h3>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="#projects.html">Projects</a></li>
</ul>
<li><a href="reflection.html">Reflection</a></li>
<div class = "dropdown">
<li class = "dropdown"><a href="projects.html">Projects</a></li>
<ul> <div class = "dropdown-content">
<li><a href="#link1.html">Link 1</a></li>
<li><a href="#link2.html">Link 2</a></li>
<li><a href="#link3.html">Link 3</a></li>
</div> </ul>
</div>
</ul>
</nav>

<footer>
Expand Down
5 changes: 3 additions & 2 deletions islt_7310/projects.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<link rel="stylesheet" href="mystyles.css">
<link rel="stylesheet" href="nav.css">
</head>
<!--This is a very barebones template!-->
<!--This is a very barebones project page!-->
<body>
<header>
<h1>Ruby Landau-Pincus</h1>
Expand All @@ -20,8 +20,9 @@ <h1>Ruby Landau-Pincus</h1>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="reflection.html">Reflection</a></li>
<div class = "dropdown">
<li class = "dropdown"><a href="#projects.html">Projects</a></li>
<li class = "dropdown"><a href="projects.html">Projects</a></li>
<ul> <div class = "dropdown-content">
<li><a href="#link1.html">Link 1</a></li>
<li><a href="#link2.html">Link 2</a></li>
Expand Down
3 changes: 2 additions & 1 deletion islt_7310/reflection.html
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,9 @@ <h3>Reflection</h3>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="reflection.html">Reflection</a></li>
<div class = "dropdown">
<li class = "dropdown"><a href="#projects.html">Projects</a></li>
<li class = "dropdown"><a href="projects.html">Projects</a></li>
<ul> <div class = "dropdown-content">
<li><a href="#link1.html">Link 1</a></li>
<li><a href="#link2.html">Link 2</a></li>
Expand Down

0 comments on commit 9fee891

Please sign in to comment.