Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions LinkTree/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# LinkTree
Social Links
Binary file added LinkTree/back.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
28 changes: 28 additions & 0 deletions LinkTree/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="https://uttcurse.me/media/profile.png">
<title>Links - Utkarsh Brahma</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1>Hello Friend 👋</h1>
</header>
<main>
<ul class="links">
<li><a href="#" target="_blank">Portfolio Site</a></li>
<li><a href="#" target="_blank">GitHub</a></li>
<li><a href="#" target="_blank">YouTube</a></li>
<li><a href="#" target="_blank">Facebook</a></li>
<li><a href="#" target="_blank">Instagram</a></li>
<li><a href="#" target="_blank">Twitter (X)</a></li>
<li><a href="#" target="_blank">LinkedIn</a></li>
<li><a href="#" target="_blank">Discord</a></li>
<li><a href="#" target="_blank">Buy Me Coffee</a></li>
</ul>
</main>
</body>
</html>
51 changes: 51 additions & 0 deletions LinkTree/styles.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
body {
margin: 0;
padding: 0;
font-family: 'Arial', sans-serif;
background-image: url('back.jpg');
background-size: cover;
background-position: center;
}

header {
background-color:burlywood;
color: white;
text-align: center;
padding: 1px;
}

main {
display: flex;
justify-content: center;
align-items: center;
min-height: 85vh;
}

.links {
list-style: none;
padding: 0;
}

.links li {
margin-bottom: 10px;
}

.links li a {
display: block;
width: 150px;
padding: 10px;
border: 1px solid #333;
border-radius: 20px;
text-align: center;
text-decoration: none;
font-weight: bolder;
color: #333;
background-color:antiquewhite;
transition: transform 0.3s;
}

.links li a:hover {
background-color: burlywood;
color: #fff;
transform: scale(1.1);
}