Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

1. Write the code to create a link back to the home page ( index.html) from mone

ID: 640097 • Letter: 1

Question

1. Write the code to create a link back to the home page (index.html) from money.html - use any text appropriate as the link text. (money.html is the file containing the link)

2. In greetings.html create a link to instructions.html - use any text appropriate as the link text. (greetings.html is the file containing the link)

3. In the index.html page write the code needed to include the graphic image arrow.gif. Use the img element and don't forget the required alt attribute!

Figure 6-12. The directory structure for the Test Yourself questions somesite) root directory mages examples/ indexhtm futorial htm examples french spanish/ german arrow.gif bulet.gif mages instructions htmi intro.htm spanish friends, html family.htmi food html greetings.html money html colors.html numbers.htm

Explanation / Answer

1.In money.html file paste this link in html body.

<a href="<em>index.html</em>">Go back to the Home Page</a>

2. In greetings.html paste this link

<a href="<em>Instructions.html</em>">View the Instructions</a>

3.

The required alt attribute specifies an alternate text for an image, if the image cannot be displayed.

The alt attribute provides alternative information for an image if a user for some reason cannot view it (because of slow connection, an error in the src attribute, or if the user uses a screen reader)

<img src="arrow.gif" alt="Smiley face">