Computer Science, asked by jyotsnasinha04445, 1 year ago

create two linked web page the first page must have some questions and should be saved as quiz.HTML. This page should be linked to another page that has answer to these question and should be saved as answer.HTML

Answers

Answered by kingabuzar77
2

Answer:

Summing up. Links are used to move from one page to another and are as default in blue underlined text. To insert a link, use the <a> tag with the href attribute to indicate the address of the target page. Example: <a href="http://www.google.com">

thank u  

kindly give Brainliest answer tag

for any query please visit profile  

@kingabuzar77

Answered by StaceeLichtenstein
2

First page :quiz.HTML In this web page we Write the HTML code that is given below

<a href="answer.HTML">Click here for answer<a>

Explanation:

  • The anchor or<a> is used for the navigation purpose in the HTML .The anchor tag is Interlinked the one page to the another web page .We can write like that < a href ="target path" >...statement < / a >.
  • In the given question firstly we have to create the quiz.HTML file .In this file we write this code <a href="answer.HTML">Click here for answer<a> in the body section .
  • The <a href="answer.HTML">Click here for answer<a> it will interlinked of the two web page .

Learn More:

https://brainly.in/question/3366591

Similar questions