Question

Page Header Go to the document body and insert a header element containing the following: An...

Page Header Go to the document body and insert a header element containing the following: An inline image from the mp_logo.png file with the alternate text Mobile Panini. Mark the image as a hypertext link pointing to the mp_index.html file. A navigation list containing an unordered list with the following list items: Home, Menu, Events, and Catering. Link the items to the mp_index.html, mp_menu.html, mp_events.html, and mp_catering.html files respectively.

Page Footer Below theheader element insert an article element. Below the article element, insert a footer element containing the following text: Mobile Panini - 31 West Avenue, Charlotte NC 28204 - 704-555-2188.

Article Go to the mp_pages.txt file, this file contains the text content of the four pages in the Mobile Panini website. Copy the text of the Welcome section, which will be used in the home page of the website. Return to mp_index.html and paste the copied text into the article element. Within the article element, do the following: Mark the Welcome line as an h1 heading. Below the h1 element, insert an inline image containing the mp_photo1.png file with an empty text string for the alternate text. Mark the next five paragraphs as paragraphs using the p element. Within the first paragraph, mark the text Mobile Panini as strong text. Within the third paragraph mark the text Curbside Thai as emphasized text. The fourth paragraph contains Mobile Panini’s phone number. Mark the phone number as a telephone link and be sure to include the international code in the URL. Note that this number is fictional, so, if you have access to a mobile browser and want to test the link, you might want to replace this number with your phone number. The fifth paragraph contains Mobile Panini’s e-mail address. Mark the e-mail address as a hypertext link. Once again, note that this e-mail address is fictional, so, if you want to test this link, you will need to replace the Mobile Panini e-mail address with your e-mail address. Build and Verify Open the mp_index.html file and click the Build Website button at the bottom of screen.

my entire page is wrong and i cannot figure out the codes?

Homework Answers

Answer #1

CODE:

<!-- mp_menu.html -->
<!DOCTYPE html>
<html>
<!-- Give the page heading -->
<head>
<title>Mobile Panini</title>
</head>
<body>
<!-- Add the header with inline image mp_logo.png -->
<!-- and alternate text as Mobile Panini -->
<header>
<a href="mp_index.html">
<!-- logo -->
<img src="Mp_logo.png" >
</a>
<!-- Create an unordered navigation list to navigate.
-->
<nav>
<ul>
<li><a href="mp_index.html">Home</a></li>
<li><a href="mp_menu.html">Menu</a></li>
<li><a href="mp_events.html">Events</a></li>
<li><a href="mp_catering.html">Catering</a>
</li>
</ul>
</nav>
</header>
<!-- Define the article -->
<!-- Insertion of an article between the header and
footer -->
<article>
<!-- copied text from mp_menu.html file and paste
in article element -->
<!-- heading -->
<h1>Our Menu</h1>
<!-- Enclosed the menu items in a description list -->
<dl>
<dt>ltem 1</dt>
<dd>Description of an item</dd>
<dt>Item 2</dt>
<dd>Description of an item</dd>
<dt>ltem 3</dt>
<dd>Description of an item</dd>
<dt>ltem 4</dt>
<dd>Description of an item</dd>
<dt>ltem 5</dt>
<dd>Description of an item</dd>
<dt>ltem 6</dt>
<dd>Description of an item</dd>
</dl>
<!-- Enclosed the menu items in a description list -->
<!-- Add an image with empty string as alternatye text. -->
<img src="Mp_photol.png" align="right" />
<!-- First Paragraph with strong text as Mobile Panini -->

<p>
<strong> Mobile Panini </strong> is the
culmination of the dream of Antonio and Carmen
Dolcini, who came to America looking to serve
people the
authentic recipes learned from their Sicilian
family.
</p>
<!-- Second Paragraph -->
<p>
Antonio began work as a child in his
grandmother's deli where he
learned the age-old secrets of Sicilian cooking. He
refined histechnique at the Culinary Institute of Milan. His
younger brother,
Carmen, with no less of a love for cooking and
good food, also
worked in the deli and became well-acquainted
with the open-air
fresh food markets of his home town. Carmen
too, is a proud
graduate of the Culinary Institute of Milan.
</p>
<!-- Third Paragraph -->
<p>
Now you can enjoy what they have learned and
mastered, right outside
your door; but with no compromises in freshness
or delicacy of preparation.
We've partnered with <em>Curbside Thai</em>
to bring you the finest cuisine on
four wheels - from the East and the West!
</p>
<!-- Fourth Paragraph with telephone number as in
the form of hyperlink. -->
<p>Phone: <a href="tel:704-555-2188">(704) 555-2188</a></p>
<!-- Fifth Paragraph with email as in the form of
hyperlink. -->
<p>E-mail: <a
href="mailto:[email protected]"
target="_top">[email protected]</a></p>
<!-- Close the article tag -->
</article>
<!-- Define the footer with the given data specified. -->
<footer>
<span>Mobile Panini - 31 West Avenue, Charlotte
NC 28204 - 704-555-2188.</span>
</footer>
</body>
</html>

Know the answer?
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for?
Ask your own homework help question
Similar Questions
This assignment will give you the opportunity to practice building a Web page. From this web...
This assignment will give you the opportunity to practice building a Web page. From this web page you will learn the necessary HTML tags needed for assignment #5. Using the reference material in the Lessons and Resources provided at the course Web site and available at other sites on the Internet, your task is to create a single Web page (filename: "mypage.html"), and upload it (eventually, when you are done it) to the directory specified in Assignment #3. This web...
Use Python to Complete the following on a single text file and submit your code and...
Use Python to Complete the following on a single text file and submit your code and your output as separate documents. For each problem create the necessary list objects and write code to perform the following examples: Sum all the items in a list. Multiply all the items in a list. Get the largest number from a list. Get the smallest number from a list. Remove duplicates from a list. Check a list is empty or not. Clone or copy...
In the previous assessment, you used a static set of named variables to store the data...
In the previous assessment, you used a static set of named variables to store the data that was entered in a form to be output in a message. For this assessment, you will use the invitation.html file that you modified in the previous assessment to create a more effective process for entering information and creating invitations for volunteers. Rather than having to enter each volunteer and create an invitation one at a time, you will create a script that will...
Challenge 5 Read ALL of the instructions carefully before starting the exercise! Dear Colleague, Earlier today...
Challenge 5 Read ALL of the instructions carefully before starting the exercise! Dear Colleague, Earlier today I built my fourth website using HTML5 and CSS3. This time I wanted to try using CSS float layout options on a website dedicated to my favorite topic: robotics. I wanted my website to look like what is shown in Figure 1 (see below). However, after giving it my best effort, things once again didn’t turn out the way I wanted (see the code...
Question 21 ​By default, most wireless networks are ____. a. ​secured by WEP b. ​password-locked c....
Question 21 ​By default, most wireless networks are ____. a. ​secured by WEP b. ​password-locked c. ​secured by WPA or WPA2 d. ​left unsecured 1 points Question 22 ​Choosing Image Editing and Illustration Programs a. ​non-lossy b. ​linear c. ​bitmap d. ​vector 1 points Question 23 ​Computer-generated graphics come in two varieties: ____ and vector. a. ​linear b. ​raster c. ​angular d. ​digital 1 points Question 24 ​Currently, WWANs provide wireless connections to the Internet using ____ networks created by...
After reading the following article, how would you summarize it? What conclusions can be made about...
After reading the following article, how would you summarize it? What conclusions can be made about Amazon? Case 12: Amazon.com Inc.: Retailing Giant to High-Tech Player? (Internet Companies) Overview Founded by Jeff Bezos, online giant Amazon.com, Inc. (Amazon), was incorporated in the state of Washington in July 1994, and sold its first book in July 1995. In May 1997, Amazon (AMZN) completed its initial public offering and its common stock was listed on the NASDAQ Global Select Market. Amazon quickly...
ADVERTISEMENT
Need Online Homework Help?

Get Answers For Free
Most questions answered within 1 hours.

Ask a Question
ADVERTISEMENT