0

How do I make a link-text? I want to show how I tried do it. BeforeAfterResult

1
  • I'm not sure what you mean "link-text". Can you clarify? Do you mean a link that's styled as regular text? Commented Jul 3, 2018 at 11:53

1 Answer 1

1

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?

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.