summaryrefslogtreecommitdiffstats
path: root/HTML/Chapter/Ch. 9 hands-on assignments/Ch9_msglm/ch9table/9.3.menu.html
diff options
context:
space:
mode:
Diffstat (limited to 'HTML/Chapter/Ch. 9 hands-on assignments/Ch9_msglm/ch9table/9.3.menu.html')
-rw-r--r--HTML/Chapter/Ch. 9 hands-on assignments/Ch9_msglm/ch9table/9.3.menu.html61
1 files changed, 61 insertions, 0 deletions
diff --git a/HTML/Chapter/Ch. 9 hands-on assignments/Ch9_msglm/ch9table/9.3.menu.html b/HTML/Chapter/Ch. 9 hands-on assignments/Ch9_msglm/ch9table/9.3.menu.html
new file mode 100644
index 0000000..0a11470
--- /dev/null
+++ b/HTML/Chapter/Ch. 9 hands-on assignments/Ch9_msglm/ch9table/9.3.menu.html
@@ -0,0 +1,61 @@
+<!DOCTYPE html>
+<html lang="en">
+ <head>
+ <title>Lighthouse Island Bistro</title>
+ <meta charset="utf-8">
+ <style>
+table {
+ margin: auto;
+ border: 5px solid #000066;
+ width: 600px;
+ border-spacing: 0;
+}
+
+caption {
+ font-family: Verdana, sans-serif;
+ font-weight: bold;
+ font-size: 1.2em;
+ padding-bottom: 5px;
+}
+
+
+td, th {
+ padding: 5px;
+ font-family: Arial, sans-serif;
+ border-style: none;
+}
+
+.altrow {
+ background-color: #eaeaea;
+}
+
+
+ </style>
+ </head>
+ <body>
+ <table>
+ <caption>Lighthouse Island Bistro Specialty Coffee Menu</caption>
+ <tr>
+ <th>Specialty Coffee</th>
+ <th>Description</th>
+ <th>Price</th>
+ </tr>
+ <tr class=altrow>
+ <td>Lite Latte</td>
+ <td>Indulge in a shot of espresso with steamed, skim milk</td>
+ <td>$3.50</td>
+ </tr>
+ <tr>
+ <td>Mocha Latte</td>
+ <td>Choose dark or milk chocolate with steamed milk</td>
+ <td>$4.00</td>
+ </tr>
+ <tr class=altrow>
+ <td>MCP Latte</td>
+ <td>A luscious mocha latte with caramel and pecan syrup</td>
+ <td>$4.50</td>
+ </tr>
+ </table>
+
+ </body>
+</html>