Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
robsd authored Jan 10, 2023
0 parents commit 372f9d8
Show file tree
Hide file tree
Showing 3 changed files with 45 additions and 0 deletions.
17 changes: 17 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# html-link-page 🔗

A simple page to put your links (think "link in bio", "linktree" etc...) made with Bootstrap for quick deployment and easy customisation.

## How to use

1. Fork this repo.

2. Replace **images/avatar.png** with your own picture.

3. Edit the **index.html** file to update your name and links.

4. Follow [these steps](https://docs.github.com/en/pages/quickstart) if you want to host it for free with GitHub Pages (you can even use a custom domain or subdomain like **links.yourname.com** or **socials.yourname.com**).

## Demo

https://robsd.github.io/html-link-page
Binary file added images/avatar.png
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 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">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap/5.2.0/css/bootstrap.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.0/css/all.min.css">
<title>Your Name</title>
</head>
<body>
<div class="container text-center my-5">
<img class="img-fluid rounded-circle mb-5" src="images/avatar.png" width="150" alt="Your Name">
<h1 class="mb-5">Your Name</h1>
<div class="col-md-6 mx-auto d-grid gap-2 mb-5">
<a class="btn btn-primary" href="https://facebook.com/yourname"><i class="fab fa-facebook"></i> Facebook</a>
<a class="btn btn-primary" href="https://twitter.com/yourname"><i class="fab fa-twitter"></i> Twitter</a>
<a class="btn btn-primary" href="https://instagram.com/yourname"><i class="fab fa-facebook"></i> Instagram</a>
<a class="btn btn-primary" href="https://linkedin.com/in/yourname"><i class="fab fa-linkedin"></i> LinkedIn</a>
<a class="btn btn-primary" href="https://snapchat.com/add/yourname"><i class="fab fa-snapchat"></i> Snapchat</a>
<a class="btn btn-primary" href="https://wa.me/441234567890"><i class="fab fa-whatsapp"></i> WhatsApp</a>
<a class="btn btn-primary" href="mailto:[email protected]"><i class="fas fa-envelope"></i> Email</a>
<a class="btn btn-primary" href="tel:01234567890"><i class="fas fa-phone"></i> Phone</a>
<a class="btn btn-primary" href="https://example.com"><i class="fas fa-globe"></i> Website</a>
</div>
<p>Developed by <a href="https://robertd.co.uk">Robert Dixon</a></p>
</div>
</body>
</html>

0 comments on commit 372f9d8

Please sign in to comment.