0
How to link my code in the web like u will search my website like (www.**********.com)??
what to do and where to do?
3 Respostas
+ 8
<a href="www.*********.com">Click me!</a>
when you click "Click me" your website will be called :D
+ 2
Search "free web hosting tuto" on google ^^
0
To add links in HTML, you can make <a></a> tag. Give 'Hypertext Reference ' where you wanted to link the text between the tag. (for example, if you click on VISIT ME - CLICK Here you will redirect to that website) .
You need to write tag into body part.
<!DOCTYPE html>
<html>
<body>
<a href="https://www.YOUR-WEBSITE-LINK.com">VISIT ME - CLICK HERE</a>
</body>
</html>