Skip to content

Commit

Permalink
Update index.html
Browse files Browse the repository at this point in the history
  • Loading branch information
therealfuntimeswithdanny authored Aug 15, 2024
1 parent 4c465c7 commit 6b29239
Showing 1 changed file with 13 additions and 10 deletions.
23 changes: 13 additions & 10 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ <h1>Made By Danny</h1>
<h3> A small website Made by Danny with a twist.</h3>
</div>

<div class="topnav">
<div class="topnav" id=myTopnav>
<a class="active" href="index.html"><i class="fa fa-fw fa-home"></i>Home</a>
<a href="about.html"><i class="fa fa-fw fa-users"></i>About Me</a>
<a href="blog.html"><i class="fa fa-fw fa-newspaper"></i>Blog</a>
Expand All @@ -249,6 +249,8 @@ <h3> A small website Made by Danny with a twist.</h3>
<a href="cad.html"><i class="fa fa-fw fa-cube"></i>Cad</a>
<a href="music.html"><i class="fa fa-fw fa-music"></i>Music</a>
<a href="music.html"><i class="fa-brands fa-fw fa-slideshare"></i>PPTX</a>
<a href="javascript:void(0);" class="icon" onclick="myFunction()">
<i class="fa fa-bars"></i>

</a>
</div>
Expand Down Expand Up @@ -395,15 +397,16 @@ <h1>madebydanny.uk</h1>
<h3> Made in VS Code</a> | Copyright 2024 MBD Team | Hosted in Cloudflare Pages</h3>
</div>

<script>
function myFunction() {
var x = document.getElementById("myTopnav");
if (x.className === "topnav") {
x.className += " responsive";
} else {
x.className = "topnav";
}
}
<script>
function myFunction() {
var x = document.getElementById("myTopnav");
if (x.className === "topnav") {
x.className += " responsive";
} else {
x.className = "topnav";
}
}
</script>

</body>
</html>

0 comments on commit 6b29239

Please sign in to comment.