Skip to content

Commit

Permalink
test-1
Browse files Browse the repository at this point in the history
  • Loading branch information
d.flor committed Oct 8, 2024
1 parent 32fba60 commit 9f5c602
Show file tree
Hide file tree
Showing 2 changed files with 62 additions and 0 deletions.
Binary file added src/Logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
62 changes: 62 additions & 0 deletions src/index.html
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>

0 comments on commit 9f5c602

Please sign in to comment.