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.

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,257
  • 21
  • 32
  • 59
0

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

Nisse Engström
  • 4,555
  • 22
  • 24
  • 38
Jack
  • 97
  • 3
  • 10