Reputation: 1
How do I make a link-text? I want to show how I tried do it. BeforeAfterResult
Upvotes: 0
Views: 28
Reputation: 771
In HTML, links are defined with the tag:
<a href="url">link text</a>
Example:
<!DOCTYPE html>
<html>
<body>
<h2>HTML Links</h2>
<p><a href="https://www.google.com">Visit google</a></p>
</body>
</html>
with javascript see here How do I create a link using javascript?
Upvotes: 1