How do I make a link-text? I want to show how I tried do it. BeforeAfterResult
Asked
Active
Viewed 25 times
0

Frozen Heart
- 1
- 1
-
I'm not sure what you mean "link-text". Can you clarify? Do you mean a link that's styled as regular text? – JoshG Jul 03 '18 at 11:53
1 Answers
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?

bembas
- 762
- 8
- 20