From 9d53d8857eaa1c9405894a88ca75bc4657e42f35 Mon Sep 17 00:00:00 2001 From: msglm Date: Sat, 14 Jan 2023 05:31:48 -0600 Subject: Inital Commit --- .../Ch11_msglm/11.8.mybistro/11.8.bistro.css | 88 +++++++++++++++++++++ .../Ch11_msglm/11.8.mybistro/11.8.breakfast.html | 35 ++++++++ .../Ch11_msglm/11.8.mybistro/11.8.coffee.html | 35 ++++++++ .../Ch11_msglm/11.8.mybistro/11.8.contact.html | 35 ++++++++ .../Ch11_msglm/11.8.mybistro/11.8.cuisine.html | 35 ++++++++ .../Ch11_msglm/11.8.mybistro/11.8.dinner.html | 35 ++++++++ .../Ch11_msglm/11.8.mybistro/11.8.directions.html | 35 ++++++++ .../Ch11_msglm/11.8.mybistro/11.8.index.html | 48 +++++++++++ .../11.8.mybistro/11.8.lighthouselogo.jpg | Bin 0 -> 4616 bytes .../Ch11_msglm/11.8.mybistro/11.8.lunch.html | 35 ++++++++ 10 files changed, 381 insertions(+) create mode 100644 HTML/Chapter/Ch. 11 hands-on assignments/Ch11_msglm/11.8.mybistro/11.8.bistro.css create mode 100644 HTML/Chapter/Ch. 11 hands-on assignments/Ch11_msglm/11.8.mybistro/11.8.breakfast.html create mode 100644 HTML/Chapter/Ch. 11 hands-on assignments/Ch11_msglm/11.8.mybistro/11.8.coffee.html create mode 100644 HTML/Chapter/Ch. 11 hands-on assignments/Ch11_msglm/11.8.mybistro/11.8.contact.html create mode 100644 HTML/Chapter/Ch. 11 hands-on assignments/Ch11_msglm/11.8.mybistro/11.8.cuisine.html create mode 100644 HTML/Chapter/Ch. 11 hands-on assignments/Ch11_msglm/11.8.mybistro/11.8.dinner.html create mode 100644 HTML/Chapter/Ch. 11 hands-on assignments/Ch11_msglm/11.8.mybistro/11.8.directions.html create mode 100644 HTML/Chapter/Ch. 11 hands-on assignments/Ch11_msglm/11.8.mybistro/11.8.index.html create mode 100644 HTML/Chapter/Ch. 11 hands-on assignments/Ch11_msglm/11.8.mybistro/11.8.lighthouselogo.jpg create mode 100644 HTML/Chapter/Ch. 11 hands-on assignments/Ch11_msglm/11.8.mybistro/11.8.lunch.html (limited to 'HTML/Chapter/Ch. 11 hands-on assignments/Ch11_msglm/11.8.mybistro') diff --git a/HTML/Chapter/Ch. 11 hands-on assignments/Ch11_msglm/11.8.mybistro/11.8.bistro.css b/HTML/Chapter/Ch. 11 hands-on assignments/Ch11_msglm/11.8.mybistro/11.8.bistro.css new file mode 100644 index 0000000..f5084fc --- /dev/null +++ b/HTML/Chapter/Ch. 11 hands-on assignments/Ch11_msglm/11.8.mybistro/11.8.bistro.css @@ -0,0 +1,88 @@ +* { box-sizing: border-box; } +body { font-family: Verdana, Arial, sans-serif; + background-color: #EAEAEA; + margin: 0; +} +#wrapper { + color: #000066; + background-color: #FFFFFF; + +} +header { font-family: Georgia, "Times New Roman", serif; + color: #00005D; + background-color: #869dc7; + background-image: url(11.8.lighthouselogo.jpg); + background-repeat: no-repeat; + margin-top: 0; + padding-bottom: 1em; + min-height: 120px; + height: auto; +} +header h1 { padding-left: 120px; + padding-top: 40px; + margin: 0; +} +header span { font-style: italic; + font-weight: bold; + font-size: 95%; + color: #FFFFFF; + padding-left: 30%; +} +nav { background-color: #00005D; + letter-spacing: 0.1em; + font-weight: bold; + padding-right: 2em; +} +nav ul { list-style-type: none; + margin: 0; +} + +nav li { padding: 0.5em; + display: inline-block; +} +nav a { text-decoration: none; + display: block; +} +nav a:link { color: #FFFFFF; } +nav a:visited { color: #EAEAEA; } +nav a:hover { color: #D3DBEB;} +main { background-color: #ffffff; + color: #000000; + padding: 10px 20px; + +} + +h2 { color: #869dc7; + font-family: arial, sans-serif; + margin: 5px; +} + + +footer {font-size:70%; + text-align: center; + padding: 10px; + clear: both; +} +header, main, nav, footer, figure, figcaption { display: block; } +@media (min-width: 600px) { + #wrapper { margin: auto; + width: 80%; } + header span { padding-left: 25%; } +} + +nav ul ul { + position: absolute; + background-color: #5564A0; + padding: 0; + display: none; +} +nav ul ul li { + border: 1px solid #00005D; + display: block; + width: 8em; + padding-left: 1em; + margin-left: 0; +} +nav li:hover ul { + display: block; +} diff --git a/HTML/Chapter/Ch. 11 hands-on assignments/Ch11_msglm/11.8.mybistro/11.8.breakfast.html b/HTML/Chapter/Ch. 11 hands-on assignments/Ch11_msglm/11.8.mybistro/11.8.breakfast.html new file mode 100644 index 0000000..4464d33 --- /dev/null +++ b/HTML/Chapter/Ch. 11 hands-on assignments/Ch11_msglm/11.8.mybistro/11.8.breakfast.html @@ -0,0 +1,35 @@ + + + +Breakfast at Lighthouse Island Bistro + + + + + + +
+ +
+

Lighthouse Island Bistro

+ the best coffee on the coast +
+
+

Breakfast Page

+

This is a sentence. This is a sentence. This is a sentence. This is a sentence. This is a sentence. This is a sentence. This is a sentence. This is a sentence. This is a sentence. This is a sentence. This is a sentence. This is a sentence. This is a sentence.

+

+
Copyright © 2020 +
+
+ + + + diff --git a/HTML/Chapter/Ch. 11 hands-on assignments/Ch11_msglm/11.8.mybistro/11.8.coffee.html b/HTML/Chapter/Ch. 11 hands-on assignments/Ch11_msglm/11.8.mybistro/11.8.coffee.html new file mode 100644 index 0000000..e387b85 --- /dev/null +++ b/HTML/Chapter/Ch. 11 hands-on assignments/Ch11_msglm/11.8.mybistro/11.8.coffee.html @@ -0,0 +1,35 @@ + + + +Lighthouse Island Bistro Coffee + + + + + + +
+ +
+

Lighthouse Island Bistro

+ the best coffee on the coast +
+
+

Coffee Page

+

This is a sentence. This is a sentence. This is a sentence. This is a sentence. This is a sentence. This is a sentence. This is a sentence. This is a sentence. This is a sentence. This is a sentence. This is a sentence. This is a sentence. This is a sentence.

+

+
Copyright © 2020 +
+
+ + + + diff --git a/HTML/Chapter/Ch. 11 hands-on assignments/Ch11_msglm/11.8.mybistro/11.8.contact.html b/HTML/Chapter/Ch. 11 hands-on assignments/Ch11_msglm/11.8.mybistro/11.8.contact.html new file mode 100644 index 0000000..c958c16 --- /dev/null +++ b/HTML/Chapter/Ch. 11 hands-on assignments/Ch11_msglm/11.8.mybistro/11.8.contact.html @@ -0,0 +1,35 @@ + + + +Contact Lighthouse Island Bistro + + + + + + +
+ +
+

Lighthouse Island Bistro

+ the best coffee on the coast +
+
+

Contact Page

+

This is a sentence. This is a sentence. This is a sentence. This is a sentence. This is a sentence. This is a sentence. This is a sentence. This is a sentence. This is a sentence. This is a sentence. This is a sentence. This is a sentence. This is a sentence.

+

+
Copyright © 2020 +
+
+ + + + diff --git a/HTML/Chapter/Ch. 11 hands-on assignments/Ch11_msglm/11.8.mybistro/11.8.cuisine.html b/HTML/Chapter/Ch. 11 hands-on assignments/Ch11_msglm/11.8.mybistro/11.8.cuisine.html new file mode 100644 index 0000000..e597a05 --- /dev/null +++ b/HTML/Chapter/Ch. 11 hands-on assignments/Ch11_msglm/11.8.mybistro/11.8.cuisine.html @@ -0,0 +1,35 @@ + + + +Lighthouse Island Bistro Cuisine + + + + + + +
+ +
+

Lighthouse Island Bistro

+ the best coffee on the coast +
+
+

Cuisine Page

+

This is a sentence. This is a sentence. This is a sentence. This is a sentence. This is a sentence. This is a sentence. This is a sentence. This is a sentence. This is a sentence. This is a sentence. This is a sentence. This is a sentence. This is a sentence.

+

+
Copyright © 2020 +
+
+ + + + diff --git a/HTML/Chapter/Ch. 11 hands-on assignments/Ch11_msglm/11.8.mybistro/11.8.dinner.html b/HTML/Chapter/Ch. 11 hands-on assignments/Ch11_msglm/11.8.mybistro/11.8.dinner.html new file mode 100644 index 0000000..fd20d0b --- /dev/null +++ b/HTML/Chapter/Ch. 11 hands-on assignments/Ch11_msglm/11.8.mybistro/11.8.dinner.html @@ -0,0 +1,35 @@ + + + +Dinner at Lighthouse Island Bistro + + + + + + +
+ +
+

Lighthouse Island Bistro

+ the best coffee on the coast +
+
+

Dinner Page

+

This is a sentence. This is a sentence. This is a sentence. This is a sentence. This is a sentence. This is a sentence. This is a sentence. This is a sentence. This is a sentence. This is a sentence. This is a sentence. This is a sentence. This is a sentence.

+

+
Copyright © 2020 +
+
+ + + + diff --git a/HTML/Chapter/Ch. 11 hands-on assignments/Ch11_msglm/11.8.mybistro/11.8.directions.html b/HTML/Chapter/Ch. 11 hands-on assignments/Ch11_msglm/11.8.mybistro/11.8.directions.html new file mode 100644 index 0000000..aaaeb66 --- /dev/null +++ b/HTML/Chapter/Ch. 11 hands-on assignments/Ch11_msglm/11.8.mybistro/11.8.directions.html @@ -0,0 +1,35 @@ + + + +Lighthouse Island Bistro Directions + + + + + + +
+ +
+

Lighthouse Island Bistro

+ the best coffee on the coast +
+
+

Directions Page

+

This is a sentence. This is a sentence. This is a sentence. This is a sentence. This is a sentence. This is a sentence. This is a sentence. This is a sentence. This is a sentence. This is a sentence. This is a sentence. This is a sentence. This is a sentence.

+

+
Copyright © 2020 +
+
+ + + + diff --git a/HTML/Chapter/Ch. 11 hands-on assignments/Ch11_msglm/11.8.mybistro/11.8.index.html b/HTML/Chapter/Ch. 11 hands-on assignments/Ch11_msglm/11.8.mybistro/11.8.index.html new file mode 100644 index 0000000..cbfd2f1 --- /dev/null +++ b/HTML/Chapter/Ch. 11 hands-on assignments/Ch11_msglm/11.8.mybistro/11.8.index.html @@ -0,0 +1,48 @@ + + + + Lighthouse Island Bistro + + + + + +
+ +
+

Lighthouse Island Bistro

+ the best coffee on the coast +
+
+

Locally Roasted Free-Trade Coffee

+

Indulge in the aroma of freshly ground roast coffee. Specialty drinks are available hot or cold.

+

Specialty Pastries

+

Enjoy a selection of our fresh-baked, organic pastries, including + fresh-fruit muffins, scones, croissants, and cinnamon rolls.

+

Lunch and Light Dinners

+

Savor delicious wraps and sandwiches on hearty, whole-grain breads with locally-grown salad, fruit, and vegetables.

+

Panoramic View

+

Take in some scenery!

+

The top of our lighthouse offers a panoramic view of the countryside. Challenge your friends to climb our 100-stair tower.

+
+
Copyright © 2020 +
+
+ + + + diff --git a/HTML/Chapter/Ch. 11 hands-on assignments/Ch11_msglm/11.8.mybistro/11.8.lighthouselogo.jpg b/HTML/Chapter/Ch. 11 hands-on assignments/Ch11_msglm/11.8.mybistro/11.8.lighthouselogo.jpg new file mode 100644 index 0000000..3893f16 Binary files /dev/null and b/HTML/Chapter/Ch. 11 hands-on assignments/Ch11_msglm/11.8.mybistro/11.8.lighthouselogo.jpg differ diff --git a/HTML/Chapter/Ch. 11 hands-on assignments/Ch11_msglm/11.8.mybistro/11.8.lunch.html b/HTML/Chapter/Ch. 11 hands-on assignments/Ch11_msglm/11.8.mybistro/11.8.lunch.html new file mode 100644 index 0000000..3e2483e --- /dev/null +++ b/HTML/Chapter/Ch. 11 hands-on assignments/Ch11_msglm/11.8.mybistro/11.8.lunch.html @@ -0,0 +1,35 @@ + + + +Lunch at Lighthouse Island Bistro + + + + + + +
+ +
+

Lighthouse Island Bistro

+ the best coffee on the coast +
+
+

Lunch Page

+

This is a sentence. This is a sentence. This is a sentence. This is a sentence. This is a sentence. This is a sentence. This is a sentence. This is a sentence. This is a sentence. This is a sentence. This is a sentence. This is a sentence. This is a sentence.

+

+ +
+ + + + -- cgit v1.2.3