-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
d.flor
committed
Oct 8, 2024
1 parent
32fba60
commit 9f5c602
Showing
2 changed files
with
62 additions
and
0 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
<!DOCTYPE html> | ||
<html lang="es"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css" integrity="sha512-9usAa10IRO0HhonpyAIVpjrylPvoDwiPUiKdWk5t3PyolY1cOd4DSE0Ga+ri4AuTroPR5aQvXU9xC6qOPnzFeg==" crossorigin="anonymous" referrerpolicy="no-referrer" /> | ||
|
||
<title>Personal Links</title> | ||
<style> | ||
body { | ||
display: flex; | ||
flex-direction: column; | ||
align-items: center; | ||
justify-content: center; | ||
min-height: 100vh; | ||
font-family: sans-serif; | ||
margin: 0; | ||
background-color: #181818; /* Color de fondo oscuro */ | ||
} | ||
|
||
.container { | ||
background-color: #282828; /* Color de fondo del contenedor */ | ||
padding: 30px; | ||
border-radius: 8px; | ||
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); | ||
width: 350px; | ||
text-align: center; | ||
} | ||
|
||
h1 { | ||
color: #ffffff; /* Color del texto */ | ||
margin-bottom: 20px; | ||
} | ||
|
||
.link-button { | ||
display: block; | ||
width: 100%; | ||
padding: 15px; | ||
margin-bottom: 10px; | ||
background-color: #4CAF50; | ||
color: #ffffff; /* Color del texto de los botones */ | ||
text-decoration: none; | ||
border-radius: 5px; | ||
transition: background-color 0.3s; | ||
} | ||
|
||
.link-button:hover { | ||
background-color: #45a049; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<div class="container"> | ||
<h1>DavKiller</h1> | ||
<img src="./Logo.png" alt="Logo" style="border-radius: 50%; width: 100px; height: 100px; display: block; margin: 0 auto 20px;"> | ||
|
||
<a href="https://github.com/yourusername" class="link-button"><i class="fa-brands fa-github"></i></i> Github</a> | ||
<a href="https://twitter.com/yourusername" class="link-button"><i class="fa-brands fa-twitter"></i> Twitter</a> | ||
<a href="https://www.linkedin.com/in/yourusername" class="link-button"> <i class="fa-solid fa-paw"></i> FurAffinity</a> | ||
<a href="https://www.yourwebsite.com" class="link-button">My Website</a> | ||
</div> | ||
</body> | ||
</html> |