Frost Link is a beautiful and responsive personal link-in-bio page built with HTML, Tailwind CSS, and Font Awesome.
Frost Link can be deployed using GitHub Pages or Vercel
All deployment steps are included at the bottom of this README
📁 FrostLink/
├── index.html ← Main HTML file
├── style.css ← (Optional) Custom styles
└── img.png ← Your profile picture
Open your terminal and run:
git clone https://github.com/YOUR-USERNAME/FrostLink.git
Replace
YOUR-USERNAME
with your actual GitHub username.
cd FrostLink
If you're using VS Code, just type:
code .
img.png
with your own image (same file name works best).Inside index.html
, find:
<h1 class="...">@cx48</h1>
<p class="...">Digital creator | Web developer | Tech enthusiast</p>
Change to your name/handle and short description.
There are 3 sections:
Find this:
<a href="https://twitter.com" ...>
<i class="fab fa-twitter"></i>
<span>Twitter</span>
</a>
Replace the URL, icon class, and name
Copy this template and paste it into the section you want:
<a href="YOUR_LINK_HERE" target="_blank" class="link-item frost-card flex items-center p-4 rounded-xl">
<div class="w-8 h-8 rounded-full bg-gradient-to-br from-COLOR1 to-COLOR2 flex items-center justify-center mr-3">
<i class="fab fa-PLATFORM text-white text-sm"></i>
</div>
<span>PLATFORM NAME</span>
<i class="fas fa-arrow-right ml-auto text-white/50"></i>
</a>
💡 Find icon names here: https://fontawesome.com/icons
Use fab
for brands (e.g. fab fa-twitter
) and fas
for standard icons (e.g. fas fa-link
)
Click the Fork button on the top-right of the repo to create a copy under your GitHub account.
main
/ (root)
After a few seconds, GitHub will provide a link to your live site.
It will look like:
https://your-username.github.io/frostlink/
You can now share that link or customize your site by editing index.html
.
You’ll get a public URL like https://yourname.vercel.app
You can always update your code, push to GitHub, and Vercel will auto-update the live site
style.css
to add extra styles or override TailwindEmail at [email protected] — happy to help!