Paragraph Regular
Paragraph Small
text-align-left
text-align-center
text-align-left
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.
Block quote
Ordered list
Unordered list
Bold text
Emphasis
Superscript
Subscript
Join 50M+ people using Linktree for their link in bio. One link to help you share everything you create, curate and sell from your Instagram, TikTok, Twitter, YouTube and other social media profiles.
Hero section with normal H1 heading
Hero section with smaller H1 heading
Join the 50M+ creators, musicians, influencers and brands using Linktree to share content and grow audiences with one simple link.
Join the 50M+ creators, musicians, influencers and brands using Linktree to share content and grow audiences with one simple link.
Join the 50M+ creators, musicians, influencers and brands using Linktree to share content and grow audiences with one simple link.
Join the 50M+ creators, musicians, influencers and brands using Linktree to share content and grow audiences with one simple link.
Join the 50M+ creators, musicians, influencers and brands using Linktree to share content and grow audiences with one simple link.
Join the 50M+ creators, musicians, influencers and brands using Linktree to share content and grow audiences with one simple link.
Join the 50M+ creators, musicians, influencers and brands using Linktree to share content and grow audiences with one simple link.
Join the 50M+ creators, musicians, influencers and brands using Linktree to share content and grow audiences with one simple link.
When copying any of the sliders to a page make sure the code below is added to the Before </body> tag on that specific page under page settings.
<script src="https://cdn.jsdelivr.net/npm/swiper@8/swiper-bundle.min.js"></script>
When copying the Vertical Rotating Text Slider on to a new page, you will need to copy the below code and paste in the Before </body> tag on that specific page under page settings.
<script>
document.addEventListener('DOMContentLoaded', function () {
var swiper = new Swiper('.swiper.is-swiper-scroll', {
direction: "vertical",
autoplay: {
delay: 2000,
disableOnInteraction: false,
},
freeMode: false,
centeredSlides: true,
slidesPerView: 'auto',
speed: 300,
loop: true,
mousewheel: {
forceToAxis: true,
invert: false,
sensitivity: 1
},
allowTouchMove: true,
mousewheel: false,
});
// Use Intersection Observer to control autoplay
var observer = new IntersectionObserver(function(entries) {
entries.forEach(function(entry) {
if (entry.isIntersecting) {
swiper.autoplay.start();
} else {
swiper.autoplay.stop();
}
});
}, {
threshold: 0.5 // Adjust as needed, 0.5 means 50% of the Swiper must be visible
});
observer.observe(document.querySelector('.swiper.is-swiper-scroll'));
});
</script>
When copying the Testimonial Slider on to a new page, you will need to copy the below code and paste in the Before </body> tag on that specific page under page settings.
<script>
var mySwiper = new Swiper ('.testimonial-swiper', {
mousewheel: {
invert: false,
forceToAxis: true,
},
// Optional parameters
slidesPerView: 1,
spaceBetween: 0,
loop: true,
speed: 250,
centeredSlides: true,
lazy: true,
allowTouchMove: true,
mousewheel: false,
navigation: {
nextEl: '.testimonial-swiper_next',
prevEl: '.testimonial-swiper_prev',
},
keyboard: {
enabled: false,
},
breakpoints: {
0: { /* when window >=0px - webflow mobile portriat */
slidesPerView: 1,
spaceBetween: 0,
}
},
})
</script>
When copying the Card Grid/ Grid - Mobile Slider on to a new page, you will need to copy the below code and paste in the Before </body> tag on that specific page under page settings.
<script>
var mySwiper = new Swiper ('.reg-swiper', {
mousewheel: {
invert: false,
forceToAxis: true,
},
// Optional parameters
slidesPerView: 1,
spaceBetween: 32,
loop: false,
speed: 400,
centeredSlides: false,
centeredSlidesBounds: true,
lazy: true,
navigation: {
nextEl: '.arrow-next',
prevEl: '.arrow-prev',
},
keyboard: {
enabled: false,
},
breakpoints: {
0: { /* when window >=0px - webflow mobile portriat */
slidesPerView: 1.15,
spaceBetween: 32,
centeredSlides: true,
},
480: { /* when window >= 478px - webflow mobile landscape */
slidesPerView: 0,
spaceBetween: 0,
allowTouchMove: false,
mousewheel: false,
}
},
})
</script>
When copying the Card Grid small - Fade Slider on mobile on to a new page, you will need to copy the below code and paste in the Before </body> tag on that specific page under page settings.
When copying the Card Grid small - Fade Slider on mobile on to a new page, you will need to copy the below code and paste in the Before </body> tag on that specific page under page settings.
<script>
var mySwiper = new Swiper ('.fade-swiper', {
mousewheel: {
invert: false,
forceToAxis: true,
},
// Optional parameters
slidesPerView: 'auto',
spaceBetween: 0,
loop: true,
centeredSlides: true,
speed: 0.1,
lazy: true,
allowTouchMove: false,
mousewheel: false,
navigation: {
nextEl: '.arrow-next',
prevEl: '.arrow-prev',
},
keyboard: {
enabled: false,
},
breakpoints: {
0: { /* when window >=0px - webflow mobile portriat */
slidesPerView: 1,
spaceBetween: 0,
},
480: { /* when window >= 478px - webflow mobile landscape */
slidesPerView: 0,
spaceBetween: 0,
}
},
autoplay: {
speed: .01,
delay: 3000,
disableOnInteraction: false,
},
})
</script>
When copying the Trusted by Slider on to a new page, you will need to copy the below code and paste in the Before </body> tag on that specific page under page settings.
<script>
var mySwiper = new Swiper ('.start-swiper', {
slidesPerView: 'auto',
spaceBetween: 16,
centeredSlides: true,
loop: true,
grabCursor: true,
allowTouchMove: true,
freemode: true,
speed: 4500,
lazy: false,
navigation: {
nextEl: '.arrow-next',
prevEl: '.arrow-prev',
},
keyboard: {
enabled: false,
},
breakpoints: {
0: { /* when window >=0px - webflow mobile portriat */
slidesPerView: 1.1,
spaceBetween: 20,
},
480: { /* when window >= 478px - webflow mobile landscape */
slidesPerView: 'auto',
spaceBetween: 16,
}
},
autoplay: {
delay: 0,
speed: 100,
disableOnInteraction: false,
pauseOnMouseEnter: true,
},
})
</script>
If you need to edit a FAQ question or answer you can do so here.
When copying the FAQs on to a new page, you will need to copy the below code and paste in the Before </head> tag on that specific page under page settings.
<style>
.faq-body {
display: none;
}
</style>
When copying the FAQs on to a new page, you will need to copy the below code and paste in the Before </body> tag on that specific page under page settings.
<!-- FAQ accordion Open/Close -->
<script>
(function ($) {
'use strict';
$(".faq-head").on("click", function () {
$(this).find(".toggle-arrow-faq").toggleClass("rotate");
$(".toggle-arrow-faq").not($(this).find(".toggle-arrow-faq")).removeClass("rotate");
$(this).next().slideToggle(300);
$(".faq-body").not($(this).next()).slideUp("fast");
});
}(jQuery));
</script>
Absolutely! You can use your Linktree bio link on your TikTok profile, Facebook page, YouTube channel, Twitter, etc. There is no limit on how many times you can share your unique link. You can use your link in bio link everywhere you want to connect and engage with your fans and followers.
Yes, you can! Small businesses can see incredible results with online sales on Linktree, because it removes the extra steps involved in a purchase. With a Spring or Shopify site powered by Paypal or Square right in your Linktree, customers don’t need to leave your social media to go to another site and pay.
Yes, you can! We offer plenty of ways to sell products and monetize your audience. You can collect tips, request payments for services, collect revenue from affiliate links, and sell your products right in your Linktree.
A lot of Linktree creators see incredible results with online sales on Linktree, because it removes the extra steps involved in a purchase. With Paypal or Square right in your Linktree, your customers won’t even need to leave your social media to go to another site and pay!
“We love how Linktree has helped us manage our business by having all social media and ways to pay in one location. The QR code has made it easy for customers to access it all!” – Tiffany
No, you don’t! Linktree can act as your very own mini-website to share, sell and grow without any of the time and effort it takes to build and maintain a regular website. You can create a design that fully reflects your personality and brand in seconds, with no knowledge, skills or experience needed. If you already have a website, that’s great: you can add it to your Linktree.
“I hardly touch my website any more. I just send people to my Linktree! It’s a good-looking, fresh interface… so much more dynamic. I can take a few minutes, update my links and put my phone away rather than spending 45 struggling on WordPress.” – @ashleyhopeperez
Sharing your Linktree on every social platform you have makes it easy for your most important content to be seen and engaged with by all of your followers. You can even use QR codes to generate online traffic in offline places, and drive people to your links.
Once visitors arrive on your Linktree, easy-to-understand analytics help you quickly and easily discover where they’re coming from, and what they’re clicking on. You can immediately see what’s working and what’s not and improve your Linktree on the fly with different link placement, prioritized links, subheadings, animation and more to make sure your traffic is landing exactly where you want it!
This depends on two things. If your priority is click-throughs and conversion, we recommend having 3-7 links on your Linktree at once (based on our most successful creators). Including too many options for your visitors slows down their course of action.
That said: for certain creators whose priority is display, education and showcasing (e.g. a record label with a library of new releases to promote, or a management company looking to showcase their full roster of clients), including more than seven links fulfils their purpose perfectly.
You can use features on Linktree to add subheadings, sections, animation and other prioritisation methods to your links – so no matter how many things you’ve got to share, you can drive your visitors to what’s most important, first.
Linktree is trusted by all social platforms, and is even used on many of Facebook, Instagram and TikTok’s own social media accounts! Because Linktree is the original and most popular link-in-bio tool, the linktr.ee URL is a trusted, identifiable and familiar link that audiences feel comfy and safe clicking on.
The short answer? Yes!
Back in 2016, we created Linktree as an easy way to link out to all socials and unify digital ecosystems, pioneering the link-in-bio category. Linktree remains the leading, biggest and most popular link-in-bio solution – but that’s just the beginning. You can use your Linktree URL or QR code anywhere your audience is, including on your business cards, in your email signature, on paper-based posters and brochures, and even on your resumé. If you don’t have a website, that’s fine. If you have a Linktree, you don’t need one!
Linktree is a single link that you can use to reveal everything you’re sharing, everywhere you’re sharing it – all in one place. You can add this personalized URL to your bio on any social media platform, in your email signatures, on business cards, and anywhere your followers, visitors and customers might discover or interact with you.
“Linktree solves the most obvious problem a majority of creators have had by allowing them to promote ALL of their platforms, products, services, etc in the same link.” – @rileydoingthings
Linktree is a platform that enables you to share more than one link from your IG bio. People use it on social media, email signatures, video descriptions, show notes, live streams, webinars and even offline, using QR codes to connect people to your online identity.
“It’s a wonderful way to direct traffic to what matters.” – Grem
Linktree is a platform that enables you to share more than one link from your social media bios. It’s used on social media, email signatures, video descriptions, show notes, live streams, webinars and even in the offline world using QR codes to connect people to your online identity.
“It’s a wonderful way to direct traffic to what matters.” – Grem
We have our own opinions here, of course, but the stories of the people who use Linktree matter more. Let’s hear what they have to say:
“Four months into creating, someone messaged me like: You need a Linktree. I can’t remember what I was using at the time, but it was one of those ones that were supposed to be easy. Once I got Linktree set up, I was like, oh my god – why did I spend $100 on a website? I don’t need all of that! Now, I can see the monetization of my following becoming a full-time thing.” – David Coleman”
It’s so much easier to set up and have all of your links in one place in a well designed format.” – Catie T
”Websites are cool (I have one) but Linktrees just make it so much easier.” – Tan Nguyen
“I love their analytics. Other link-in-bio companies don’t provide extensive data on what’s going on.” – Riley Lemon
Linktree invented the bio link tool in 2016, and it continues to be the world’s most popular bio link to this day – with 50M+ people using it as their trusted place to share, sell and grow online. Join them on Linktree today and see for yourself!
Find it in the App Store, and in the Google Play store!
Right now, every time you’ve got something new to share, you have to go to every single one of your channels to change the link in each of your bios. It’s time-consuming and complicated – making it so much harder to keep everything up to date.
A link in bio tool means you never have to compromise, or remove one link from your bio so you can add another. You can keep everything you want to share online in one link. When you’ve got a change, you only ever have to make it once.
Linktree is a single link that you can use to connect audiences to everything you are, everything you do, and everything you care about. It enables you to share many links in one, so your followers, visitors and customers can find everything they’re looking for in one place.
You can add it to your bio link on social media platforms like Tiktok and Instagram, include it in your email signatures, and even display it as a QR code to get your offline audiences connected with you online. Linktree is for everyone – that’s why 50M+ creators already swear by it!
Linktree isn’t designed to compete with your website – it simply removes the obstacles between your socials and your point of sale. Using Linktree can help increase traffic to your website and shop by surfacing your products right in your link in bio, making them easier and more appealing for your followers and visitors to discover.
Like any good small business and ecommerce website, your Linktree integrates seamlessly with the platforms you already use. Embed your Shopify and Spring stores right in your Linktree, power your payments with Paypal, Venmo and Square, and measure your growth and performance with Google Analytics, Meta Pixels, Zapier and Google Sheets. Linktree also has its own analytics, so you can see what’s converting and optimize for more sales.
Yes, you can! The Linktree mobile app offers plenty of ways to sell products and monetize your audience. The app makes it faster and easier than ever to collect tips, request payments for services, collect revenue from affiliate links, and sell your products right in your Linktree.
A lot of Linktree creators see incredible results with online sales on Linktree, because it removes the extra steps involved in a purchase. With Paypal or Square right in your Linktree, your customers won’t even need to leave your social media to go to another site and pay!
Yep! You can use the exact same details to log in and get all of the features available on your current plan – no extra payment or login needed.
Linktree is a platform that enables you to share more than one link from your Twitter profile. People use Linktree on social media, email signatures, video descriptions, show notes, live streams, webinars and even offline, using QR codes to connect people to your online identity.
“It’s a wonderful way to direct traffic to what matters.” – Grem
Absolutely! You can use your Linktree bio link on your Twitter bio, TikTok profile, Facebook page, YouTube channel, etc. There is no limit on how many times you can share your unique link. You can use your link in bio link everywhere you want to connect and engage with your followers. You can even add your Linktree URL to your Tweets!
Creator mode is a profile setting on your dashboard that can help you grow your reach and influence on LinkedIn. You can turn on creator mode to get access to additional tools and features that help you create content and grow your audience base on LinkedIn*. By adding a unique Linktree URL, you supercharge an already powerful tool.
*From LinkedIn Support website
Linktree is a platform that enables you to share more than one link from your LinkedIn profile. People use it on social media, email signatures, video descriptions, show notes, live streams, webinars and even in the offline world using QR codes to connect people to your online identity.
“It’s a wonderful way to direct traffic to what matters.” – Grem
Absolutely! You can use your Linktree bio link on your LinkedIn profile, Instagram bio, TikTok profile, Facebook page, YouTube channel, Twitter, etc. There is no limit on how many times you can use or share your unique link. You can use your link in bio link everywhere you want to connect and engage with your network.
No, it is totally free!
"Optimal work hours vary depending on the nature of the work, individual differences, and organizational culture. However, the evidence suggests that overworking can be counterproductive. Employers should focus on results rather than hours spent”
Join over 100,000 top Real Estate professionals using Linktree to optimize their social media presence and streamline client communication
Unlock Linktree, your all-in-one marketing solution to boost listings, leads, and client engagement.
Use Linktree's custom-designed forms to capture leads, and turn profile visitors into potential buyers with seamless contact and follow-up tools.
The free link in bio trusted by 60M+ brands and creators.
Grow your audience and generate passive income, all from one seamless platform.
Start making money in just a few clicks.
Set up automated replies to instantly engage customers, drive traffic to your offers and increase conversions.
Sell your products, collect cash and monetize online.
Ready to make bank while you sharing your favorite content with your followers?