0

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.

user3475283
  • 25
  • 1
  • 8
Jack
  • 97
  • 3
  • 10

2 Answers2

1

Try this:

<a href="C:\Users\Dmitry\PycharmProjects\save&edit\templates\form_action.html">My Link</a> 
Raviteja
  • 3,399
  • 23
  • 42
  • 69
0

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

Nisse Engström
  • 4,738
  • 23
  • 27
  • 42
Jack
  • 97
  • 3
  • 10