Hyperlink with notepad++

JOHNEDDY -  
 JOHNEDDY -
Hello,
the link I created doesn't execute, the Wikipedia search page opens instead...
Do I need to configure Notepad++ after installation (if so, how)?
Or, what should I do to get my link to execute and with which browser?

EDIT: Moved the topic to the HTML forum.

.
Configuration: Windows / Chrome 81.0.4044.122

3 réponses

jordane45 Posted messages 30426 Registration date   Status Modérateur Last intervention   4 830
 
Hello,

Notepad++ is just a text editor... so there is no configuration needed regarding link opening.
And since you're talking about links... we assume it's related to HTML, right?
What exactly did you code?
What is opening exactly?

NB: Read before posting your code!!! ---> To post code on the forum, you must use code tags.
Explanations available here:
https://codes-sources.commentcamarche.net/faq/11288-les-balises-de-code

.

--
Best regards,
Jordane
0
JOHNEDDY
 
Hello everyone! Actually, I'm learning to create a hyperlink (HTML language) here is my attempt: <a href="http://www.facebook.com>click here to access Facebook</a>

In the "Run" menu, there are options like: Get PHP help, Wikipedia search page (which I replaced with Internet Explorer), Open file in another instance. When I click on Internet Explorer, the Wikipedia search page always appears and I can't find my code.
I just installed Notepad++ and I'm learning to create links... I was wondering if there are settings to make and why I don't have other usual search engines (Internet Explorer, Chrome, Firefox, etc.) in the "Run" options except for the Wikipedia page.

Is it possible to add those search engines to the "Run" menu by yourself? Thank you!
0
jordane45 Posted messages 30426 Registration date   Status Modérateur Last intervention   4 830
 
First, your link is incorrect. It's missing quotation marks.
 <a href="http://www.facebook.com>click here to access facebook</a> 

To be corrected to:
 <a href="http://www.facebook.com">click here to access facebook</a> 


Then, your question concerns the use (the functioning) of the notepad++ software and not the HTML language per se.
I will therefore move your question to the "software" forum...
0
JOHNEDDY
 
Thank you very much, Jordan!
I will try coding again and see how it goes with your correction.
See you later!
0