Last active
December 27, 2024 19:05
-
-
Save natedoesweb/b5730d6ce8445e5e6e03ffa951d85e73 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Linktree Style Page</title> | |
| <style> | |
| body { | |
| margin: 0; | |
| padding: 0; | |
| font-family: Arial, sans-serif; | |
| background-color: #f4f4f4; | |
| display: flex; | |
| justify-content: center; | |
| align-items: center; | |
| height: 100vh; | |
| } | |
| .linktree-container { | |
| text-align: center; | |
| width: 100%; | |
| max-width: 500px; | |
| background: #fff; | |
| padding: 20px; | |
| border-radius: 10px; | |
| box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); | |
| } | |
| .profile-pic { | |
| width: 120px; | |
| height: 120px; | |
| border-radius: 50%; | |
| margin-bottom: 15px; | |
| } | |
| h1 { | |
| margin: 10px 0; | |
| font-size: 24px; | |
| } | |
| p { | |
| font-size: 14px; | |
| color: #666; | |
| } | |
| .links { | |
| margin-top: 20px; | |
| } | |
| .links a { | |
| display: block; | |
| text-decoration: none; | |
| background-color: #0073b1; | |
| color: #fff; | |
| padding: 12px; | |
| margin: 10px 0; | |
| border-radius: 5px; | |
| font-size: 16px; | |
| transition: background-color 0.3s ease; | |
| } | |
| .links a:hover { | |
| background-color: #005f91; | |
| } | |
| footer { | |
| margin-top: 20px; | |
| font-size: 12px; | |
| color: #aaa; | |
| } | |
| </style> | |
| </head> | |
| <body> | |
| <div class="linktree-container"> | |
| <img src="https://via.placeholder.com/120" alt="Profile Picture" class="profile-pic"> | |
| <h1>Nate Smith</h1> | |
| <p>Web Developer | IT Consultant | Problem Solver</p> | |
| <div class="links"> | |
| <a href="https://example.com" target="_blank">My Portfolio</a> | |
| <a href="https://linkedin.com" target="_blank">LinkedIn Profile</a> | |
| <a href="https://github.com" target="_blank">GitHub</a> | |
| <a href="https://twitter.com" target="_blank">Twitter</a> | |
| </div> | |
| <footer>© 2024 Nate Smith</footer> | |
| </div> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment