Put a Link-to-Us on Your Website
Home
SEO
Checklist
On-Page SEO
Technical SEO
Off-Page SEO
Best SEO Tools
SEO Secrets
Link-to-Us
Web Design
Web Design Resources
Tools
Free Content
Guides
Entity Codes
CSS Links
Tools
Pretty Links
Pretty Text
Social
Facebook
Twitter
Contact
Welcome
This page offers you the HTML, CSS, and JavaScript to put a "link to us" section on your web page. It is good SEO to put a link to us section on your page as backlinks help your Google ranking.
Example:
⤸
Link to This Web Page
<a href="http://www.example.com/">Example</a>
Here is Your HTML:
Replace the URL below with your URL
<form> <h2>Link to This Web Page</h2> <textarea rows="3" cols="60" id="link-to-us" onclick="clipboard();"> <a href="http://www.example.com/">Example</a> </textarea> <br> <input type="button" value="Copy to Clipboard" onclick="clipboard();"> </form>
Here is Your JavaScript:
Put in the <head> of your page.
<script type="text/javascript"> function clipboard() { document.getElementById('link-to-us').select(); document.execCommand('copy'); if (document.selection) { document.selection.empty(); } else if (window.getSelection) { window.getSelection().removeAllRanges(); } alert("HTML copied to the clipboard!"); } </script>
Here is Your CSS: (optional)
textarea { background: #dddddd; color: navy; font-family: monospace; font-size: 16px; border: 5px solid transparent; font-weight: bold; } textarea:hover { border: 5px solid navy; }
©2020-2021 Gregory Neil Robinson