Sobes.tech
Junior

How is the address of the document to be accessed specified?

sobes.tech AI

Answer from AI

Using the href attribute of the a tag (hyperlink) or the action attribute of the form tag.

<a href="https://www.example.com/page.html">Go to page</a>

<form action="/submit-data" method="post">
  <!-- Form fields -->
  <button type="submit">Submit</button>
</form>
How is the address of the document to be accessed… - sobes.tech