21 22 23 24 ■Home   ■   HTML   ■   Learn CSS   ■   Learn JavaScript 25 26 27 28 29 30 31

Principles of Information Systems (MindTap Course List)
13th Edition
ISBN:9781305971776
Author:Ralph Stair, George Reynolds
Publisher:Ralph Stair, George Reynolds
Chapter6: Networks And Cloud Computing
Section: Chapter Questions
Problem 13DQ
icon
Related questions
Question
100%

In the nav element, add a relative link to the text, Home, that links to index.html.

Add a relative link to the text, Learn HTML, that links to html.html.

Add a relative link to the text, Learn CSS, that links to css.html.

Add a relative link to the text, Learn JavaScript, that links to js.html.

https://effective-broccoli-r4r9wxwrqjqq2w5jq.github.dev/?folder=%2Fworkspaces%2F9780357423844_minnick-web-design-9e-a5ab2139-3fa8-432f-a807-66072cdd42e5%2Fchapter3%2Fapply_your_knowledge%2Fstudent 

21
22
23
24
<!-- Use the nav area to add hyperlinks to other pages within the website. It contains static content. -->
<nav>
<p>
&#9632;<a href="index.html" target="_blank">Home</a>
&nbsp; &#9632; &nbsp;
<a href="html.html" target="_blank">HTML &nbsp; &#9632; &nbsp;</a>
<a href="css.html" target="_blank">Learn CSS &nbsp; &#9632; &nbsp;</a>
<a href="js.html" target="_blank">Learn JavaScript</a>
25
26
27
28
29
</p>
30
</nav>
31
Transcribed Image Text:21 22 23 24 <!-- Use the nav area to add hyperlinks to other pages within the website. It contains static content. --> <nav> <p> &#9632;<a href="index.html" target="_blank">Home</a> &nbsp; &#9632; &nbsp; <a href="html.html" target="_blank">HTML &nbsp; &#9632; &nbsp;</a> <a href="css.html" target="_blank">Learn CSS &nbsp; &#9632; &nbsp;</a> <a href="js.html" target="_blank">Learn JavaScript</a> 25 26 27 28 29 </p> 30 </nav> 31
Expert Solution
steps

Step by step

Solved in 2 steps

Blurred answer