Create a web page with a filename of pgmExplanation.html that explains something interesting about a program. Your explanation must make sense. You must use grammatically correct sentences that provide a reasonable flow through your web page. Creativity and aesthetics are part of web programming, and they are part of this assignment.
Follow these guidelines:
▸ Include at least one heading (h1, h2, etc.) on your web page.
▸ Display a code fragment from the program, or display the whole program, if appropriate. Feel free to create the program yourself or use a program that you find in a book or on the Internet.
▸ Refer to a specific variable in the program, specific input, and specific output.
▸ Provide a quote from a book that refers to the program or to a concept illustrated by the program, and provide a citation for the book’s title. Feel free to use a real quote from a real book or make up a fictional quote from a fictional book.
▸ Provide an acronym (real or made up) or a definition that somehow relates to the web page’s discussion.
▸ Include a total of at least 10 different types of phrasing elements on your web page. You must use appropriate phrasing elements that fit the flow of your web page. You will lose points if any of your elements are inappropriate (e.g., using wbr in a normal-length word). For future projects, you will use CSS for formatting. But for practice purposes, for this project, use only HTML5 elements and not CSS.
Solution:
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="author" content="Zacharia Maganga">
<title>Carmine's Pizzeria</title>
</head>
<body>
<h1>Carmine's Pizzeria</h1>
<p>
Each of our pizzas has a volume of
Ο·<var>radius</var><sup>2</sup>·<var>height</var>.
If <var>radius</var> = <var>z</var> &
<var>height</var> = <var>a</var>, that means the volume spells
"Pi·z·z·a"!
</p>
<p>
==> <strong>Late night special:</strong> slice of cheese
⅓ off &1t;==
</p>
Who Invented Pizza?
</body>
</html>
Carmine's Pizzeria
Each of our pizzas has a volume of Ο·radius2·height. If radius = z & height = a, that means the volume spells "Pi·z·z·a"!
==> Late night special: slice of cheese ⅓ off &1t;==
Who Invented Pizza? Did you know pizza took the United States by storm before it became popular in its native Italy?
No comments:
Post a Comment