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?
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>
Get Answers For Free
Most questions answered within 1 hours.