Tutorial on how to do this, if you used this tutorial, please give an ⭐ star! :D
When you create a GitHub project, normally theres no link indexed
To make that blue clickable link, you need to…
Click on the Settings button
And THEN put your valid link
Right?
Well, no…
We all know what HTML is, so i will not explain.
Github uses a BIG AMOUNT of HTML features to make the website working, eg.: defining that password on the login page will not display the current password typed, etc.
And the link feature also uses one of these features, in this case, type="url".
But What if i change it?
Right-clicking the textbox area, i got this:
<input type="url" id="repo_homepage" class="color-bg-default form-control input-contrast width-full" name="repo_homepage" value="" placeholder="Enter a valid URL">
You noticed the input type="url", right? But, what would happen if I DELETE this value?
Nothing change, right?
Well, lets test it…
TA-DA!! Easy, right?