Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
JustLecs authored Jan 5, 2024
1 parent cd9fd74 commit df64eb3
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 8 deletions.
18 changes: 15 additions & 3 deletions assets/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@
html {background-color: #C0C0C0;
}
h1 {color:yellow;
background-color: darkblue;
border: 50px solid darkblue;
background-color: #0f1035;
border: 50px solid #0f1035;
border-radius: 7px;
text-align: center;
}
.center {display: block;
margin-left: auto;
margin-right: auto;
border: 6px solid black;
border: 6px solid #0f1035;
border-radius: 3px;
}
hr {
Expand Down Expand Up @@ -45,3 +45,15 @@ p {
#email {
margin-left: 15%;
}
.button {
background-color: white;
color: #365486;
border: 2px solid #365486;
border-radius: 3px
}

.button:hover {
background-color: #dcf2f1;
color: #365486;
}

10 changes: 5 additions & 5 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@ <h3><a id="link" href="./public/invitation.index.html">Party Invite:</a></h3>
</div><div>
</body>
<hr>
<table style="width:100%">
<table id="menu-main" style="width:100%">
<tr>
<td><a href="./public/contact.html">Contact Me</a></td>
<td><a href="./public/about.html">About Me</a></td>
<td> <a href="./public/Resume.html">Resume</a></td>
<td><a href="./public/contact.html"><button class="button">Contact Me</button></a></td>
<td><a href="./public/about.html"><button class="button">About Me</button></a></td>
<td> <a href="./public/Resume.html"><button class="button">Resume</button></a></td>
</tr>
</table>
</html>
</html>

0 comments on commit df64eb3

Please sign in to comment.