Mobile app version of vmapp.org
Login or Join
Reiling115

: How to make a clickable link with HTML Editey I am an HTML beginner and I'm making a website using HTML Editey. I know how to do things like make bold text or make an underline under the

@Reiling115

Posted in: #Html #Links #TextEditor

I am an HTML beginner and I'm making a website using HTML Editey. I know how to do things like make bold text or make an underline under the letter or number, but I don't know how to make a clickable link.

I want to make a clickable link or some text which is you click on it, it will make you go to another website. I did inspect on Chrome but I got confused and couldn't figure it out.

10.02% popularity Vote Up Vote Down


Login to follow query

More posts by @Reiling115

2 Comments

Sorted by latest first Latest Oldest Best

 

@Dunderdale272

Its really quite simple, and we were all new programmers at some point and time.

You can use this link for anything really not just text.

<a href="">Your Content here</a>


That is the basic code for linking objects. It will be the same with images or divs all the same you would just add the content in the same area.

Div Example: <a href=""><div>div is a link</div></a>

Img Example: <a href=""><img src=""></a>

10% popularity Vote Up Vote Down


 

@Connie744

Make a .html File with the following content:

<a href="http://website.com"> The Text </a>


It's simple, isn't it?

More information: www.w3schools.com/html/html_links.asp

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme