Jack
Jack

Reputation: 95

can't create hyper link HTML

I am creating layout. I included hyperlink but it doesn't work. I wrote my 'href' in this format.

href="C:/Users/Dmitry/PycharmProjects/save&edit/templates/form_action.html"

Of course I took it in tags. After clicking on this link it doesn't react.

Upvotes: 0

Views: 115

Answers (2)

Jack
Jack

Reputation: 95

Defined relative path <a href="templates/form_action.html">My Link</a>. Finally it works.

Upvotes: 0

Raviteja
Raviteja

Reputation: 3479

Try this:

<a href="C:\Users\Dmitry\PycharmProjects\save&edit\templates\form_action.html">My Link</a> 

Upvotes: 1

Related Questions