├── .DS_Store ├── LICENSE ├── README.md ├── about.html ├── assets ├── .DS_Store ├── css │ └── style.css └── images │ ├── about.jpg │ ├── banner.png │ ├── logo.png │ ├── shrimp-skewers.jpg │ └── table-in-restaurant.jpg ├── contact.html ├── index.html └── menu.html /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackerUSA-CE/HTML-Restaurant-Menu/c50e7b048e746e14fc498c2bb9d047c0d8348fba/.DS_Store -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2022 ThriveDX 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Activity: Restaurant Menu 2 | -------------------------------------------------------------------------------- /about.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Document 7 | 8 | 9 | 10 | 11 | 12 | 13 |
14 | 15 |
16 | 17 | -------------------------------------------------------------------------------- /assets/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackerUSA-CE/HTML-Restaurant-Menu/c50e7b048e746e14fc498c2bb9d047c0d8348fba/assets/.DS_Store -------------------------------------------------------------------------------- /assets/css/style.css: -------------------------------------------------------------------------------- 1 | html, 2 | body { 3 | margin: 0; 4 | padding: 0; 5 | background-color: beige; 6 | text-align: center; 7 | } 8 | 9 | h1, 10 | h2 { 11 | color: darkred; 12 | } 13 | 14 | h3, 15 | p, 16 | li { 17 | color: green; 18 | } 19 | 20 | img { 21 | width: 100%; 22 | height: auto; 23 | max-width: 100%; 24 | } 25 | 26 | main { 27 | margin: 0 20%; 28 | } 29 | 30 | nav { 31 | background-color: beige; 32 | padding: 10px; 33 | } 34 | 35 | nav ul { 36 | list-style-type: none; 37 | text-align: center; 38 | } 39 | 40 | nav li { 41 | display: inline; 42 | } 43 | 44 | nav a { 45 | text-decoration: none; 46 | font-size: 1.6em; 47 | color: green; 48 | margin-right: 25px; 49 | } 50 | 51 | nav a:hover { 52 | color: darkred; 53 | } 54 | 55 | #banner { 56 | width: 100%; 57 | height: auto; 58 | background-color: white; 59 | } 60 | 61 | #banner img { 62 | width: 60%; 63 | height: auto; 64 | } 65 | 66 | .service { 67 | display: inline-block; 68 | background-color: white; 69 | border: 5px solid green; 70 | border-radius: 5px; 71 | color: darkred; 72 | font-size: 2em; 73 | padding: 20px; 74 | margin: 10px; 75 | } 76 | 77 | table { 78 | border: 3px solid black; 79 | width: 100%; 80 | } 81 | 82 | td, 83 | th { 84 | border: 1px solid black; 85 | padding: 5px; 86 | } -------------------------------------------------------------------------------- /assets/images/about.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackerUSA-CE/HTML-Restaurant-Menu/c50e7b048e746e14fc498c2bb9d047c0d8348fba/assets/images/about.jpg -------------------------------------------------------------------------------- /assets/images/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackerUSA-CE/HTML-Restaurant-Menu/c50e7b048e746e14fc498c2bb9d047c0d8348fba/assets/images/banner.png -------------------------------------------------------------------------------- /assets/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackerUSA-CE/HTML-Restaurant-Menu/c50e7b048e746e14fc498c2bb9d047c0d8348fba/assets/images/logo.png -------------------------------------------------------------------------------- /assets/images/shrimp-skewers.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackerUSA-CE/HTML-Restaurant-Menu/c50e7b048e746e14fc498c2bb9d047c0d8348fba/assets/images/shrimp-skewers.jpg -------------------------------------------------------------------------------- /assets/images/table-in-restaurant.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackerUSA-CE/HTML-Restaurant-Menu/c50e7b048e746e14fc498c2bb9d047c0d8348fba/assets/images/table-in-restaurant.jpg -------------------------------------------------------------------------------- /contact.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Document 7 | 8 | 9 | 10 | 11 | 12 | 13 |
14 |

Hours of Operation

15 |

16 | Monday-Friday: 11:00am-8:30pm 17 |

18 |

19 | Saturday-Sunday: 1:00pm-10:00pm 20 |

21 |

Contact Info

22 |

23 | Phone Number: TBD 24 |

25 |
26 | 27 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | H-Thai-ML 7 | 8 | 9 | 10 | 11 | 12 | 13 |
14 |

H-Thai-ML

15 | 16 |
17 | 18 | -------------------------------------------------------------------------------- /menu.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Document 7 | 8 | 9 | 10 | 11 | 12 | 13 |
14 | 15 | Appetizers 16 | 17 | Name Price 18 | Chicken Satay $7.95 19 | Fresh Rolls $6.95 20 | 21 | Lunch 22 | 23 | Name Price 24 | Panang Curry $9.95 25 | Red Curry $9.95 26 | Yellow Curry $8.95 27 | Tom Ka Soup $8.95 28 | Tom Yum Soup $8.95 29 | 30 | Dinner 31 | 32 | Name Price 33 | Pad Thai $10.95 34 | Pad See Ew $10.49 35 | Rad Nah $10.49 36 | 37 | Dessert 38 | 39 | Name Price 40 | Black Sticky Rice Pudding $3.99 41 | Mango Sticky Rice $5.99 42 | 43 | Beverages 44 | 45 | Name Price 46 | Thai Iced Coffee $3.49 47 | Thai Iced Tea $3.49 48 | Unsweetened Iced Tea $2.49 49 | 50 | Side Orders 51 | 52 | Name Price 53 | Jasmine rice $1.99 54 | Brown rice $2.49 55 | Cucumber Salad $2.99 56 |
57 | 58 | --------------------------------------------------------------------------------