Distribution HTML Link Generator

Preview HTML links:

How does Distribution Links Converter / HTML Link Generator work?

About Distribution Link converter / HTML link converter:

If you have some website links but you need to generate them with an HTML tag example anchor tag, it will help you to do the task very easily and quickly.

Example: It will convert from https://magicconvertcase.com to <a href="https://magicconvertcase.com">https://magicconvertcase.com</a>.

Note: If you checked “Target _blank/open with new tab” it will add a attribute for opening link a new tab:
<a href="https://magicconvertcase.com" target="_blank">https://magicconvertcase.com</a>. The default mode is Checked.

Separator option:

Separator option work as a separator. If you have link content with new line (⏎) / comma(,) / hyphen (-) / semicolon (;) / spaces ( ) so you have to choose one option. Based on your separator option text will get separated and will create links.

Also, there is a more advanced option for custom Separators. Just enable the option and add your custom separator. That way you can create links based on your separator.

Convert:

It will convert from https://magicconvertcase.com to <a href="https://magicconvertcase.com">https://magicconvertcase.com</a>

Convert With ul>li:

It will convert from https://magicconvertcase.com to

        
        <ul>
            <li>
                <a href="https://magicconvertcase.com">https://magicconvertcase.com</a>
            </li>
        </ul>
        
    

Convert With ol>li:

It will convert from https://magicconvertcase.com to

        
        <ol>
            <li>
                <a href="https://magicconvertcase.com">https://magicconvertcase.com</a>
            </li>
        </ol>
        
    

Convert <p> tag:

It will convert from https://magicconvertcase.com to

<p><a href="https://magicconvertcase.com">https://magicconvertcase.com</a></p>