1. Write procedure for linking to a document in a different folder in html
Answers
Answer:
your correct answer is :<A HREF="name the path to another document ">Click here<A>
Linking of document in HTML Page.
Explanation:
<a href=" "> tag is used to link another page or document in the same page by using href attribute inside the following tag. Without the href attribute the user cannot link its document on their page.
For example:
<a href="/folder_directory/file_name.extension">
<a href="/new_folder/page.html">
→ if the the file in other directory then, you firstly write the path of that directory then, file name.
→ If the file in the same directory then, you simply write that file name.
We can also use <link href=""> tag with href attribute to link any documents or style file in HTML.
Note: without href attribute the user cannot link any document or file in its page.
Learn More:
brainly.in/question/14791228