GitHub-nonlink-on-link-area

Tutorial on how to do this, if you used this tutorial, please give an ⭐ star! :D

Overview

When you create a GitHub project, normally theres no link indexed

image

To make that blue clickable link, you need to…

Right?

Well, no…

Stage 1: HTML

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?

Stage 1.1: Values

Right-clicking the textbox area, i got this: image

<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? image

Nothing change, right?

Well, lets test it…

image image image

TA-DA!! Easy, right?