Skip to content

Commit

Permalink
Merge pull request #3471 from manikdamle/main
Browse files Browse the repository at this point in the history
Added a button to return to home page on profile page
  • Loading branch information
sailaja-adapa authored Oct 15, 2024
2 parents e5cbcb9 + f35366b commit 7557e4b
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions profile.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
<link rel="icon" type="image/png" sizes="16x16" href="./assets/favicon_package_v0.16/favicon-16x16.png">
<link rel="manifest" href="./assets/favicon_package_v0.16/site.webmanifest">
<link rel="mask-icon" href="./assets/favicon_package_v0.16/safari-pinned-tab.svg" color="#5bbad5">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="theme-color" content="#ffffff">
<title>Profile Page</title>
Expand Down Expand Up @@ -83,6 +84,20 @@
margin-bottom: 20px;
}

.home-icon {
    margin-top: 10px;
    text-align: center;
}

.home-icon a {
    text-decoration: none;
    font-size: 18px;
}

.home-icon i {
    margin-right: 5px;
}

.profile-picture img {
width: 100%;
height: auto;
Expand Down Expand Up @@ -511,6 +526,11 @@
<div class="circle"></div>
<div class="profile-container">
<div class="profile-sidebar">
<div class="home-icon">
                <a href="index.html">
                    <center><i class="fas fa-home"></i>Home</center>
                </a>
            </div>
<div class="profile-picture">
<img id="profile-avatar" src="https://via.placeholder.com/150" alt="Profile Picture">
</div>
Expand Down

0 comments on commit 7557e4b

Please sign in to comment.