links
links copied to clipboard
Add License File
Please add a license file, so i know how to use it in my project or not :)
Sorry that I'm responding to this message so late. They're just using bio.link for the project. If you were to use this website, use a custom domain within the page's settings.
I'd recommend keeping the credits on (you don't have to.) Try not to make it seem like you did all of the work like this person did.
If you want more control over your own domain, I'd suggest just making a fullscreen iframe or redirect to your own bio.link page. If you don't want to do any of that, do what they did, and just copy the page's source, but that makes it more annoying to update. If you were to host it on an open source platform, make sure to actually add a link to the original website too.
Here's an example of what I did using a fullscreen iFrame:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta property="og:url" content="https://slashdiv.ga">
<meta content="slashdiv#5797" property="og:title"/>
<meta content="Links to my other sites." property="og:description"/>
<meta itemprop="image" content="https://slashdiv.ga/radiohead2.png">
<meta property="og:image" content="https://slashdiv.ga/radiohead2.png">
<meta content="#ffffff" data-react-helmet="true" name="theme-color"/>
<link rel="icon" href="https://slashdiv.ga/radiohead2.png" type="image/x-icon">
<link rel="shortcut icon" href="https://slashdiv.ga/radiohead2.png" type="image/x-icon">
<title>slashdiv#5797</title>
<style type="text/css">
body, html
{
margin: 0; padding: 0; height: 100%; overflow: hidden;
}
#content
{
position:absolute; left: 0; right: 0; bottom: 0; top: 0px;
}
</style>
</head>
<body>
<div id="content">
<iframe width="100%" height="100%" frameborder="0" src="https://slashdiv.bio.link/"></iframe>
</div>
</body>
</html>