├── .gitignore ├── favicon.ico ├── img ├── next.png ├── prev.png ├── close.png ├── loading.gif ├── home │ ├── home.jpg │ ├── about.jpg │ ├── contact.jpg │ ├── thankyou.gif │ └── about-post.jpg ├── food │ ├── food-1.jpg │ ├── food-2.jpg │ ├── food-3.jpg │ ├── food-4.jpg │ ├── food-5.jpg │ ├── food-6.jpg │ ├── food-7.jpg │ └── food-8.jpg ├── rooms │ ├── room-1.jpg │ ├── room-2.jpg │ └── room-3.jpg └── favicon │ ├── favicon.ico │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── apple-touch-icon.png │ ├── android-chrome-192x192.png │ ├── android-chrome-512x512.png │ └── site.webmanifest ├── Content.md ├── .github └── workflow │ ├── pull_request_template.md │ └── contribution.yml ├── README.md ├── js ├── script.js └── lightbox.min.js ├── css ├── lightbox.min.css ├── utilities.css └── style.css ├── food.txt ├── thankyou.html ├── about.html └── index.html /.gitignore: -------------------------------------------------------------------------------- 1 | food.txt 2 | content.md -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evavic44/Hotel-Zeitaku/HEAD/favicon.ico -------------------------------------------------------------------------------- /img/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evavic44/Hotel-Zeitaku/HEAD/img/next.png -------------------------------------------------------------------------------- /img/prev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evavic44/Hotel-Zeitaku/HEAD/img/prev.png -------------------------------------------------------------------------------- /img/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evavic44/Hotel-Zeitaku/HEAD/img/close.png -------------------------------------------------------------------------------- /img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evavic44/Hotel-Zeitaku/HEAD/img/loading.gif -------------------------------------------------------------------------------- /img/home/home.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evavic44/Hotel-Zeitaku/HEAD/img/home/home.jpg -------------------------------------------------------------------------------- /img/food/food-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evavic44/Hotel-Zeitaku/HEAD/img/food/food-1.jpg -------------------------------------------------------------------------------- /img/food/food-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evavic44/Hotel-Zeitaku/HEAD/img/food/food-2.jpg -------------------------------------------------------------------------------- /img/food/food-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evavic44/Hotel-Zeitaku/HEAD/img/food/food-3.jpg -------------------------------------------------------------------------------- /img/food/food-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evavic44/Hotel-Zeitaku/HEAD/img/food/food-4.jpg -------------------------------------------------------------------------------- /img/food/food-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evavic44/Hotel-Zeitaku/HEAD/img/food/food-5.jpg -------------------------------------------------------------------------------- /img/food/food-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evavic44/Hotel-Zeitaku/HEAD/img/food/food-6.jpg -------------------------------------------------------------------------------- /img/food/food-7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evavic44/Hotel-Zeitaku/HEAD/img/food/food-7.jpg -------------------------------------------------------------------------------- /img/food/food-8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evavic44/Hotel-Zeitaku/HEAD/img/food/food-8.jpg -------------------------------------------------------------------------------- /img/home/about.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evavic44/Hotel-Zeitaku/HEAD/img/home/about.jpg -------------------------------------------------------------------------------- /img/home/contact.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evavic44/Hotel-Zeitaku/HEAD/img/home/contact.jpg -------------------------------------------------------------------------------- /img/rooms/room-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evavic44/Hotel-Zeitaku/HEAD/img/rooms/room-1.jpg -------------------------------------------------------------------------------- /img/rooms/room-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evavic44/Hotel-Zeitaku/HEAD/img/rooms/room-2.jpg -------------------------------------------------------------------------------- /img/rooms/room-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evavic44/Hotel-Zeitaku/HEAD/img/rooms/room-3.jpg -------------------------------------------------------------------------------- /img/home/thankyou.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evavic44/Hotel-Zeitaku/HEAD/img/home/thankyou.gif -------------------------------------------------------------------------------- /img/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evavic44/Hotel-Zeitaku/HEAD/img/favicon/favicon.ico -------------------------------------------------------------------------------- /img/home/about-post.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evavic44/Hotel-Zeitaku/HEAD/img/home/about-post.jpg -------------------------------------------------------------------------------- /img/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evavic44/Hotel-Zeitaku/HEAD/img/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /img/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evavic44/Hotel-Zeitaku/HEAD/img/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /img/favicon/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evavic44/Hotel-Zeitaku/HEAD/img/favicon/apple-touch-icon.png -------------------------------------------------------------------------------- /img/favicon/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evavic44/Hotel-Zeitaku/HEAD/img/favicon/android-chrome-192x192.png -------------------------------------------------------------------------------- /img/favicon/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evavic44/Hotel-Zeitaku/HEAD/img/favicon/android-chrome-512x512.png -------------------------------------------------------------------------------- /Content.md: -------------------------------------------------------------------------------- 1 | 2 | ```css 3 | #3cce96; 4 | #14a36c; 5 | #f7c08a 6 | #333333 7 | #f4f4f4 8 | #ffffff 9 | #9dc4b5 10 | ``` -------------------------------------------------------------------------------- /img/favicon/site.webmanifest: -------------------------------------------------------------------------------- 1 | {"name":"","short_name":"","icons":[{"src":"/android-chrome-192x192.png","sizes":"192x192","type":"image/png"},{"src":"/android-chrome-512x512.png","sizes":"512x512","type":"image/png"}],"theme_color":"#ffffff","background_color":"#ffffff","display":"standalone"} -------------------------------------------------------------------------------- /.github/workflow/pull_request_template.md: -------------------------------------------------------------------------------- 1 | ## Issue No → 2 |
3 | 4 |
5 | 6 | ## What does this PR do? → 7 |
8 | 9 |
10 | 11 | 12 | ## Question → 13 |
14 | 15 |
16 | 17 | _I made sure the changes only affected the issue area._ 18 | - [] 19 | 20 | 21 | -------------------------------------------------------------------------------- /.github/workflow/contribution.yml: -------------------------------------------------------------------------------- 1 | on: 2 | issues: 3 | types: [opened] 4 | pull_request_target: [opened] 5 | 6 | 7 | 8 | jobs: 9 | welcome: 10 | runs-on: Ubuntu-latest 11 | steps: 12 | - uses: actions/first-interaction@v1 13 | with: 14 | repo-token: ${{ secrets.GITHUB_TOKEN }} 15 | issue-message: '

Hello, thank you for raising an issue to this repo.

:nerd_face:' 16 | pr-message: '

Thank you for contributing to this project. Kindly be patient as I review this. While you wait, feel free to check out other repos of mine you can also contribute to, Here' -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |

Hotel Zeitaku

2 | 3 | 4 | 5 |
6 | 7 | #### Frontend design of a local Japanese hotel made completely with: 8 | * HTML & CSS 9 | * Jquery library 10 | * JavaScript lightbox 11 | 12 | Credit: Brad Traversy HTML CSS from scratch Udemy course. 13 | 14 |
15 |

Visit the website here: 👉 Link 16 |

17 | 18 |
19 | 20 | > ### ✔Feedback Contributors 21 | Thanks goes to these amazing people for giving their awesome feedback on the `TOP SECRET` page 🎉🎉🎉 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 |

Eke Victor


Jonah Lawrence


Adarsh Sulegai

32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /js/script.js: -------------------------------------------------------------------------------- 1 | const navbar = document.getElementById('navbar'); 2 | let scrolled = false; 3 | 4 | window.onscroll = function () { 5 | if (window.pageYOffset > 500) { 6 | navbar.classList.remove('top') 7 | if (!scrolled) { 8 | navbar.style.transform = "translateY(-70px)"; 9 | } 10 | setTimeout(function () { 11 | navbar.style.transform = "translateY(0)"; 12 | scrolled = true; 13 | }, 250); 14 | } else { 15 | navbar.classList.add('top'); 16 | scrolled = false; 17 | } 18 | } 19 | 20 | // Smooth Scrolling 21 | $('#navbar a').on('click', function (e) { 22 | if (this.hash !== '') { 23 | e.preventDefault(); 24 | 25 | const hash = this.hash; 26 | 27 | $('html, body').animate( 28 | { 29 | scrollTop: $(hash).offset().top - 50, 30 | }, 31 | 900 32 | ); 33 | } 34 | }); 35 | 36 | // Tawk.to Chat box Script 37 | var Tawk_API=Tawk_API||{}, Tawk_LoadStart=new Date(); 38 | (function(){ 39 | var s1=document.createElement("script"),s0=document.getElementsByTagName("script")[0]; 40 | s1.async=true; 41 | s1.src='https://embed.tawk.to/60dd436c65b7290ac638d1d9/1f9g4uo63'; 42 | s1.charset='UTF-8'; 43 | s1.setAttribute('crossorigin','*'); 44 | s0.parentNode.insertBefore(s1,s0); 45 | })(); -------------------------------------------------------------------------------- /css/lightbox.min.css: -------------------------------------------------------------------------------- 1 | .lb-loader,.lightbox{text-align:center;line-height:0;position:absolute;left:0}body.lb-disable-scrolling{overflow:hidden}.lightboxOverlay{position:absolute;top:0;left:0;z-index:9999;background-color:#000;filter:alpha(Opacity=80);opacity:.8;display:none}.lightbox{width:100%;z-index:10000;font-weight:400;outline:0}.lightbox .lb-image{display:block;height:auto;max-width:inherit;max-height:none;border-radius:3px;border:4px solid #fff}.lightbox a img{border:none}.lb-outerContainer{position:relative;width:250px;height:250px;margin:0 auto;border-radius:4px;background-color:#fff}.lb-outerContainer:after{content:"";display:table;clear:both}.lb-loader{top:43%;height:25%;width:100%}.lb-cancel{display:block;width:32px;height:32px;margin:0 auto;background:url(../img/loading.gif) no-repeat}.lb-nav{position:absolute;top:0;left:0;height:100%;width:100%;z-index:10}.lb-container>.nav{left:0}.lb-nav a{outline:0;background-image:url(data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==)}.lb-next,.lb-prev{height:100%;cursor:pointer;display:block}.lb-nav a.lb-prev{width:34%;left:0;float:left;background:url(../img/prev.png) left 48% no-repeat;filter:alpha(Opacity=0);opacity:0;-webkit-transition:opacity .6s;-moz-transition:opacity .6s;-o-transition:opacity .6s;transition:opacity .6s}.lb-nav a.lb-prev:hover{filter:alpha(Opacity=100);opacity:1}.lb-nav a.lb-next{width:64%;right:0;float:right;background:url(../img/next.png) right 48% no-repeat;filter:alpha(Opacity=0);opacity:0;-webkit-transition:opacity .6s;-moz-transition:opacity .6s;-o-transition:opacity .6s;transition:opacity .6s}.lb-nav a.lb-next:hover{filter:alpha(Opacity=100);opacity:1}.lb-dataContainer{margin:0 auto;padding-top:5px;width:100%;border-bottom-left-radius:4px;border-bottom-right-radius:4px}.lb-dataContainer:after{content:"";display:table;clear:both}.lb-data{padding:0 4px;color:#ccc}.lb-data .lb-details{width:85%;float:left;text-align:left;line-height:1.1em}.lb-data .lb-caption{font-size:13px;font-weight:700;line-height:1em}.lb-data .lb-caption a{color:#4ae}.lb-data .lb-number{display:block;clear:left;padding-bottom:1em;font-size:12px;color:#999}.lb-data .lb-close{display:block;float:right;width:30px;height:30px;background:url(../img/close.png) top right no-repeat;text-align:right;outline:0;filter:alpha(Opacity=70);opacity:.7;-webkit-transition:opacity .2s;-moz-transition:opacity .2s;-o-transition:opacity .2s;transition:opacity .2s}.lb-data .lb-close:hover{cursor:pointer;filter:alpha(Opacity=100);opacity:1} -------------------------------------------------------------------------------- /food.txt: -------------------------------------------------------------------------------- 1 | Onigiri 2 | Onigiri, also known as Japanese rice ball is a great example of how inventive Japanese cuisine 3 | can be. It is also a Japanese comfort food made from steamed rice formed into the typical 4 | triangular ball, or cylinder shapes and usually wrapped with Nori(dried seaweed). 5 | 6 | 7 | Curry Rice 8 | The curry was introduced to Japan in late 1800 by the British and originally it was Western style stews mixed with curry powder. The Japanese adapted curry to their own version, Curry 9 | Rice (Kare Raisu, カレーライス) soon after. By 1950s the curry roux in block form was sold by 10 | S&B Foods and everyone could make it easily at home. 11 | 12 | 13 | Miso soup 14 | Miso soup is a traditional Japanese soup consisting of a dashi stock into which softened miso 15 | Paste is mixed. In addition, there are many optional ingredients that may be added depending 16 | On regional and seasonal recipes, and personal preference. 17 | 18 | Ebi tempura bento 19 | Tempura is, in many ways, an archetypal Japanese food. All the essential qualities of the 20 | nation's cuisine are reflected in its preparation: the use of absolutely fresh ingredients, the 21 | artful presentation,and the perfection of technique by a skilled chef.The result is one of the 22 | triumphs of Japanese cooking-a fried food that is light and fresh-tasting rather than heavy 23 | and greasy. It's a cooking style in which the eessence of 3 the ingredient itself completely 24 | defines the taste. 25 | 26 | Japanese Sushi is a traditional Japanese dish of prepared vinegared rice, usually with some sugar and 27 | salt,accompanying a variety of ingredients,such as seafood,often raw,and vegetables. Styles 28 | of sushi and it's presentation vary widely,but the one key ingredient is"sushi rice",also 29 | referred to asshari, orsumeshi. 30 | 31 | Rice sushi 32 | In Japan, we call sushi rice Sushi-meshi鮨飯, Su-meshi(酢飯), orshari(シャリ).It’s made of 33 | white, short-grain Japanese rice seasoned with rice vinegar, sugar,and salt. Brown rice is 34 | sometimes used outside of Japan, but it’s not common in sushi restaurants in Japan. 35 | 36 | Ramen 37 | After World War II, ramen became internationally recognized when Japan increased their imports of U.S. 38 | wheat, contributing to Japan's ramen industry and growth. There are three common types of broths in the 39 | Japanese ramen: Tonkotsu, Shoyu, and Miso. 40 | 41 | Nigiri 42 | Nigiri ornigiri zushi is a special kind of hand-pressed sushi where the meat is sliced and 43 | pressed on top of sushi rice. It was developed in Tokyo(thencalledEdo)during the 1800s. 44 | Sometimes, nori seaweed is used to wrap the whole concoction and keep it together. -------------------------------------------------------------------------------- /css/utilities.css: -------------------------------------------------------------------------------- 1 | /* text color */ 2 | .text-primary { 3 | color: #3cce96; 4 | } 5 | 6 | .text-secondary { 7 | color: #14a36c; 8 | } 9 | 10 | .text-other { 11 | color: #0284d0; 12 | } 13 | 14 | /* background */ 15 | .bg-primary { 16 | background: #3cce96; 17 | color: #fff; 18 | } 19 | 20 | .bg-light { 21 | background: #f4f4f4; 22 | color: #333; 23 | } 24 | 25 | .bg-dark { 26 | background: #333; 27 | color: #fff; 28 | } 29 | 30 | /* button */ 31 | .btn { 32 | display: inline-block; 33 | background: #333; 34 | color: #fff; 35 | padding: 15px 30px; 36 | border-radius: 2px; 37 | cursor: pointer; 38 | border-radius: 3px; 39 | transition: all 0.4s ease-in-out; 40 | } 41 | 42 | .btn-primary { 43 | background: #3cce96; 44 | color: #fff; 45 | } 46 | 47 | .btn-primary:hover { 48 | background: #14a36c; 49 | } 50 | 51 | .btn-outline { 52 | background: transparent; 53 | border: 1px solid #3cce96; 54 | color: #333; 55 | } 56 | 57 | /* ?flex-items */ 58 | .flex-items { 59 | display: flex; 60 | align-items: center; 61 | justify-content: center; 62 | text-align: center; 63 | padding: 10px; 64 | height: 100%; 65 | font-weight: 500; 66 | } 67 | 68 | .flex-items > div { 69 | padding: 20px; 70 | } 71 | 72 | /* ?flex-columns */ 73 | .flex-columns .row { 74 | display: flex; 75 | flex-direction: row; 76 | flex-wrap: wrap; 77 | width: 100%; 78 | } 79 | 80 | .flex-columns .column { 81 | display: flex; 82 | flex-direction: column; 83 | flex-basis: 100%; 84 | flex: 1; 85 | } 86 | 87 | .flex-columns .column .column-1, 88 | .flex-columns .column .column-2 { 89 | height: 100%; 90 | } 91 | 92 | .flex-columns img { 93 | width: 100%; 94 | height: 100%; 95 | object-fit: cover; 96 | } 97 | 98 | .flex-columns .column-2 { 99 | display: flex; 100 | flex-direction: column; 101 | align-items: flex-start; 102 | justify-content: center; 103 | padding: 20px 30px 30px; 104 | font-weight: 500; 105 | } 106 | 107 | .flex-columns h4 { 108 | padding-bottom: 10px; 109 | } 110 | 111 | .flex-columns h2 { 112 | font-size: 40px; 113 | margin: 0 10px 0 0; 114 | } 115 | 116 | .flex-columns .btn { 117 | margin-top: 10px; 118 | } 119 | 120 | .secondary-header { 121 | display: flex; 122 | flex-direction: column; 123 | align-items: center; 124 | justify-content: center; 125 | text-align: center; 126 | padding: 30px 40px; 127 | } 128 | 129 | .secondary-header h4 { 130 | padding-bottom: 15px; 131 | } 132 | 133 | .secondary-header h2 { 134 | font-size: 50px; 135 | } 136 | 137 | /* flex-grid */ 138 | .flex-grid { 139 | padding: 20px 5px; 140 | } 141 | 142 | .flex-grid .row { 143 | display: flex; 144 | flex-direction: row; 145 | flex-wrap: wrap; 146 | padding: 0 4px; 147 | } 148 | 149 | .flex-grid .column { 150 | flex: 25%; 151 | max-width: 25%; 152 | padding: 0 4px; 153 | } 154 | 155 | .main-container { 156 | margin: 0 auto; 157 | max-width: 1200px; 158 | } -------------------------------------------------------------------------------- /thankyou.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 16 | 17 | 18 | Zeitaku | Thank You 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 |
31 |
32 | 58 | 59 |
60 |

Thank You

61 |

I know what you're thinking; ¯\_(ツ)_/¯ "This ain't top secret Eke!? "

62 | 63 |

I just wanted to let you know that you're a real hero! And you make this world a nicer place

64 |
65 |
66 | 67 | 79 |
80 | 81 | 82 | 83 | -------------------------------------------------------------------------------- /js/lightbox.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Lightbox v2.11.2 3 | * by Lokesh Dhakar 4 | * 5 | * More info: 6 | * http://lokeshdhakar.com/projects/lightbox2/ 7 | * 8 | * Copyright Lokesh Dhakar 9 | * Released under the MIT license 10 | * https://github.com/lokesh/lightbox2/blob/master/LICENSE 11 | * 12 | * @preserve 13 | */ 14 | !function(a,b){"function"==typeof define&&define.amd?define(["jquery"],b):"object"==typeof exports?module.exports=b(require("jquery")):a.lightbox=b(a.jQuery)}(this,function(a){function b(b){this.album=[],this.currentImageIndex=void 0,this.init(),this.options=a.extend({},this.constructor.defaults),this.option(b)}return b.defaults={albumLabel:"Image %1 of %2",alwaysShowNavOnTouchDevices:!1,fadeDuration:600,fitImagesInViewport:!0,imageFadeDuration:600,positionFromTop:50,resizeDuration:700,showImageNumberLabel:!0,wrapAround:!1,disableScrolling:!1,sanitizeTitle:!1},b.prototype.option=function(b){a.extend(this.options,b)},b.prototype.imageCountLabel=function(a,b){return this.options.albumLabel.replace(/%1/g,a).replace(/%2/g,b)},b.prototype.init=function(){var b=this;a(document).ready(function(){b.enable(),b.build()})},b.prototype.enable=function(){var b=this;a("body").on("click","a[rel^=lightbox], area[rel^=lightbox], a[data-lightbox], area[data-lightbox]",function(c){return b.start(a(c.currentTarget)),!1})},b.prototype.build=function(){if(!(a("#lightbox").length>0)){var b=this;a('
').appendTo(a("body")),this.$lightbox=a("#lightbox"),this.$overlay=a("#lightboxOverlay"),this.$outerContainer=this.$lightbox.find(".lb-outerContainer"),this.$container=this.$lightbox.find(".lb-container"),this.$image=this.$lightbox.find(".lb-image"),this.$nav=this.$lightbox.find(".lb-nav"),this.containerPadding={top:parseInt(this.$container.css("padding-top"),10),right:parseInt(this.$container.css("padding-right"),10),bottom:parseInt(this.$container.css("padding-bottom"),10),left:parseInt(this.$container.css("padding-left"),10)},this.imageBorderWidth={top:parseInt(this.$image.css("border-top-width"),10),right:parseInt(this.$image.css("border-right-width"),10),bottom:parseInt(this.$image.css("border-bottom-width"),10),left:parseInt(this.$image.css("border-left-width"),10)},this.$overlay.hide().on("click",function(){return b.end(),!1}),this.$lightbox.hide().on("click",function(c){"lightbox"===a(c.target).attr("id")&&b.end()}),this.$outerContainer.on("click",function(c){return"lightbox"===a(c.target).attr("id")&&b.end(),!1}),this.$lightbox.find(".lb-prev").on("click",function(){return 0===b.currentImageIndex?b.changeImage(b.album.length-1):b.changeImage(b.currentImageIndex-1),!1}),this.$lightbox.find(".lb-next").on("click",function(){return b.currentImageIndex===b.album.length-1?b.changeImage(0):b.changeImage(b.currentImageIndex+1),!1}),this.$nav.on("mousedown",function(a){3===a.which&&(b.$nav.css("pointer-events","none"),b.$lightbox.one("contextmenu",function(){setTimeout(function(){this.$nav.css("pointer-events","auto")}.bind(b),0)}))}),this.$lightbox.find(".lb-loader, .lb-close").on("click",function(){return b.end(),!1})}},b.prototype.start=function(b){function c(a){d.album.push({alt:a.attr("data-alt"),link:a.attr("href"),title:a.attr("data-title")||a.attr("title")})}var d=this,e=a(window);e.on("resize",a.proxy(this.sizeOverlay,this)),this.sizeOverlay(),this.album=[];var f,g=0,h=b.attr("data-lightbox");if(h){f=a(b.prop("tagName")+'[data-lightbox="'+h+'"]');for(var i=0;ik||g.height>j)&&(g.width/k>g.height/j?(i=k,h=parseInt(g.height/(g.width/i),10),f.width(i),f.height(h)):(h=j,i=parseInt(g.width/(g.height/h),10),f.width(i),f.height(h))),c.sizeContainer(f.width(),f.height())},g.src=this.album[b].link,this.currentImageIndex=b},b.prototype.sizeOverlay=function(){var b=this;setTimeout(function(){b.$overlay.width(a(document).width()).height(a(document).height())},0)},b.prototype.sizeContainer=function(a,b){function c(){d.$lightbox.find(".lb-dataContainer").width(g),d.$lightbox.find(".lb-prevLink").height(h),d.$lightbox.find(".lb-nextLink").height(h),d.$overlay.focus(),d.showImage()}var d=this,e=this.$outerContainer.outerWidth(),f=this.$outerContainer.outerHeight(),g=a+this.containerPadding.left+this.containerPadding.right+this.imageBorderWidth.left+this.imageBorderWidth.right,h=b+this.containerPadding.top+this.containerPadding.bottom+this.imageBorderWidth.top+this.imageBorderWidth.bottom;e!==g||f!==h?this.$outerContainer.animate({width:g,height:h},this.options.resizeDuration,"swing",function(){c()}):c()},b.prototype.showImage=function(){this.$lightbox.find(".lb-loader").stop(!0).hide(),this.$lightbox.find(".lb-image").fadeIn(this.options.imageFadeDuration),this.updateNav(),this.updateDetails(),this.preloadNeighboringImages(),this.enableKeyboardNav()},b.prototype.updateNav=function(){var a=!1;try{document.createEvent("TouchEvent"),a=!!this.options.alwaysShowNavOnTouchDevices}catch(a){}this.$lightbox.find(".lb-nav").show(),this.album.length>1&&(this.options.wrapAround?(a&&this.$lightbox.find(".lb-prev, .lb-next").css("opacity","1"),this.$lightbox.find(".lb-prev, .lb-next").show()):(this.currentImageIndex>0&&(this.$lightbox.find(".lb-prev").show(),a&&this.$lightbox.find(".lb-prev").css("opacity","1")),this.currentImageIndex1&&this.options.showImageNumberLabel){var c=this.imageCountLabel(this.currentImageIndex+1,this.album.length);this.$lightbox.find(".lb-number").text(c).fadeIn("fast")}else this.$lightbox.find(".lb-number").hide();this.$outerContainer.removeClass("animating"),this.$lightbox.find(".lb-dataContainer").fadeIn(this.options.resizeDuration,function(){return a.sizeOverlay()})},b.prototype.preloadNeighboringImages=function(){if(this.album.length>this.currentImageIndex+1){(new Image).src=this.album[this.currentImageIndex+1].link}if(this.currentImageIndex>0){(new Image).src=this.album[this.currentImageIndex-1].link}},b.prototype.enableKeyboardNav=function(){this.$lightbox.on("keyup.keyboard",a.proxy(this.keyboardAction,this)),this.$overlay.on("keyup.keyboard",a.proxy(this.keyboardAction,this))},b.prototype.disableKeyboardNav=function(){this.$lightbox.off(".keyboard"),this.$overlay.off(".keyboard")},b.prototype.keyboardAction=function(a){var b=a.keyCode;27===b?(a.stopPropagation(),this.end()):37===b?0!==this.currentImageIndex?this.changeImage(this.currentImageIndex-1):this.options.wrapAround&&this.album.length>1&&this.changeImage(this.album.length-1):39===b&&(this.currentImageIndex!==this.album.length-1?this.changeImage(this.currentImageIndex+1):this.options.wrapAround&&this.album.length>1&&this.changeImage(0))},b.prototype.end=function(){this.disableKeyboardNav(),a(window).off("resize",this.sizeOverlay),this.$lightbox.fadeOut(this.options.fadeDuration),this.$overlay.fadeOut(this.options.fadeDuration),this.options.disableScrolling&&a("body").removeClass("lb-disable-scrolling")},new b}); 15 | //# sourceMappingURL=lightbox.min.map -------------------------------------------------------------------------------- /about.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 16 | 17 | 18 | Zeitaku | About Us 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 |
31 | 56 | 57 |
58 |

About Us

59 |
60 |
61 | 62 |
63 |
64 |
65 |

About Us

66 |

History Of Zeitaku

67 |

68 | Zeitaku, founded by 'Uzumaki Naruto' and the 'Uchiha' clan 50 years ago. These families have been in the 69 | hospitality industry ever since. Although it has undergone quite a bit of modernization and upkeep over the 70 | years, the main attraction, namely the Hokage molded statue and gorgeous hidden leaf village tress have 71 | remained the center for it's appeal. 72 |

73 | 74 |

75 | Lorem ipsum dolor sit amet consectetur adipisicing elit. Suscipit, nihil. Dolorum quis at reiciendis, 76 | temporibus ut sed et ullam dolore perspiciatis alias ipsum nostrum dolores ab deserunt exercitationem amet 77 | totam! Neque ea delectus, modi, rem explicabo voluptates porro adipisci esse magnam at dicta quos placeat a 78 | iusto cumque dolores repellat? 79 | Unde libero blanditiis deleniti mollitia corporis 80 | vero, voluptatem quasi soluta voluptas obcaecati enim eligendi fugiat provident hic quidem. Mollitia 81 | explicabo autem minima? 82 |

83 |
84 |
85 |
86 | 87 | 88 |
89 |
90 |

Book your accomodations now!

91 |

Rooms

92 |

Lorem ipsum dolor sit amet consectetur adipisicing elit. Voluptatibus aperiam, asperiores distinctio 93 | deserun.

94 |
95 |
96 |
97 | 98 |
99 |

Standard Room

100 |
    101 |
  • Standard condition
  • 102 |
  • Single Size
  • 103 |
  • Room service
  • 104 |
105 | Book Now 106 |
107 |
108 | 109 |
110 | 111 |
112 |

Premium Room

113 |
    114 |
  • Standard condition
  • 115 |
  • Single Size
  • 116 |
  • Room service
  • 117 |
118 | Book Now 119 |
120 |
121 | 122 |
123 | 124 |
125 |

Deluxe Room

126 |
    127 |
  • Standard condition
  • 128 |
  • Single Size
  • 129 |
  • Room service
  • 130 |
131 | Book Now 132 |
133 |
134 |
135 |
136 | 137 |
138 |
139 |
140 |

A Life of Luxury & Comfort

141 |

Lorem ipsum dolor sit amet consectetur adipisicing elit. Tenetur odio maxime amet aliquid culpa ipsam 142 | quibusdam sed, laudantium perspiciatis ex ducimus illum, consequuntur, eaque ullam qui reiciendis fugit rem 143 | inventore ab. Rem eos impedit ullam minima tempore, aspernatur libero corporis! Quo, sint labore? Delectus 144 | doloribus ipsam omnis nam asperiores excepturi minus a corrupti modi qui facilis sapiente pariatur, ab quam 145 | illum. Nesciunt ipsa corrupti dicta veritatis officia voluptas quis? Obcaecati totam neque, ad aliquid 146 | suscipit in ducimus deserunt architecto laboriosam.

147 |
148 | 149 |
150 |

Ecstatic & Life changing experience

151 |

Lorem ipsum dolor sit amet consectetur adipisicing elit. Tenetur odio maxime amet aliquid culpa ipsam 152 | quibusdam sed, laudantium perspiciatis ex ducimus illum, consequuntur, eaque ullam qui reiciendis fugit rem 153 | inventore ab. Rem eos impedit ullam minima tempore, aspernatur libero corporis! Quo, sint labore? Delectus 154 | doloribus ipsam omnis nam asperiores excepturi minus a corrupti modi qui facilis sapiente pariatur, ab quam 155 | illum. Nesciunt ipsa corrupti dicta veritatis officia voluptas quis? Obcaecati totam neque, ad aliquid 156 | suscipit in ducimus deserunt architecto laboriosam.

157 |
158 |
159 |
160 | 161 |
162 |

Support 24/7

163 | 164 |

+234 90000000

165 |
166 | 167 | 168 |
169 |
170 | 171 | 172 | 174 | 175 |
176 |

Copyright © 2020   |   Zeitaku 177 |

178 |
179 | 180 | 181 | 182 | -------------------------------------------------------------------------------- /css/style.css: -------------------------------------------------------------------------------- 1 | @import url('https://fonts.googleapis.com/css2?family=Lato:wght@300&family=Open+Sans:wght@300;400&family=Raleway:wght@200;300&display=swap'); 2 | 3 | /* Css reset */ 4 | * { 5 | box-sizing: border-box; 6 | margin: 0; 7 | padding: 0; 8 | } 9 | 10 | /* Main styling */ 11 | body { 12 | font-family: 'Raleway', sans-serif; 13 | font-weight: 100; 14 | line-height: 1.6; 15 | color: #333; 16 | } 17 | 18 | h1, h2, h3 { 19 | padding-bottom: 0.625rem; 20 | line-height: 1.3; 21 | font-weight: 100; 22 | } 23 | 24 | p { 25 | margin: 0.625rem 0; 26 | } 27 | 28 | ul { 29 | list-style: none; 30 | } 31 | 32 | a { 33 | text-decoration: none; 34 | color: #333; 35 | } 36 | 37 | img { 38 | width: 100%; 39 | } 40 | 41 | /* Navbar */ 42 | .navbar { 43 | display: flex; 44 | align-items: center; 45 | justify-content: space-between; 46 | background: #333; 47 | color: #fff; 48 | height: 4.375rem; 49 | width: 100%; 50 | padding: 1.25rem 0.625rem; 51 | position: fixed; 52 | top: 0; 53 | transition: 0.9s; 54 | } 55 | 56 | .navbar.top { 57 | background: transparent; 58 | } 59 | 60 | .navbar a { 61 | color: #fff; 62 | padding: 0.625rem 0.938rem; 63 | } 64 | 65 | .navbar .logo { 66 | font-size: 1.5rem; 67 | padding: 0.938rem; 68 | order: 2; 69 | transform: translateX(-50%); 70 | } 71 | 72 | .navbar nav { 73 | order: 1; 74 | } 75 | 76 | .navbar nav a { 77 | padding: 0.938rem; 78 | font-weight: 900; 79 | font-size: 0.938rem; 80 | transition: all 0.4s ease-in-out; 81 | } 82 | 83 | .navbar nav a:hover { 84 | border-bottom: 0.125rem solid #fff; 85 | } 86 | 87 | .navbar ul { 88 | display: flex; 89 | } 90 | 91 | .navbar .social { 92 | order: 3; 93 | margin-right: 1.25rem; 94 | } 95 | 96 | .navbar .social a { 97 | opacity: 0.5; 98 | padding: 0 1.25rem; 99 | transition: all 0.4s ease-in-out; 100 | } 101 | 102 | .navbar .social a:hover { 103 | opacity: 1; 104 | } 105 | 106 | /* Hero */ 107 | .hero { 108 | background: url('../img/home/home.jpg') no-repeat center center/cover; 109 | height: 100vh; 110 | color: #fff; 111 | position: relative; 112 | padding-top: 0.938rem; 113 | } 114 | 115 | .hero .content { 116 | display: flex; 117 | flex-direction: column; 118 | align-items: center; 119 | justify-content: center; 120 | text-align: center; 121 | height: 100%; 122 | padding: 0 1.25rem; 123 | line-height: 1.8; 124 | } 125 | 126 | .hero .content h1 { 127 | font-size: 6.25rem; 128 | font-weight: 600; 129 | padding-bottom: 1.25rem; 130 | } 131 | 132 | .hero .content p { 133 | font-size: 1.375rem; 134 | } 135 | 136 | .hero .content .btn { 137 | margin-top: 1.25rem; 138 | } 139 | 140 | .hero::before { 141 | content: ''; 142 | position: absolute; 143 | top: 0; 144 | left: 0; 145 | height: 100%; 146 | width: 100%; 147 | background: rgba(0, 0, 0, 0.4); 148 | } 149 | 150 | .hero * { 151 | z-index: 10; 152 | } 153 | 154 | /* Icons */ 155 | .icons { 156 | padding: 1.25rem; 157 | } 158 | 159 | .icons i { 160 | font-size: 2.5rem; 161 | color: #14af74; 162 | padding-bottom: 1rem; 163 | } 164 | 165 | .icons h3 { 166 | font-weight: 600; 167 | } 168 | 169 | /* food */ 170 | .food img { 171 | border-radius: 0.188rem; 172 | } 173 | 174 | .food img:hover { 175 | opacity: 0.7; 176 | } 177 | 178 | /* Rooms */ 179 | .rooms p { 180 | font-weight: 500; 181 | } 182 | 183 | .rooms .room { 184 | display: flex; 185 | flex-direction: row; 186 | padding: 0 1.25rem; 187 | font-weight: 500; 188 | } 189 | 190 | .rooms .room > div { 191 | display: flex; 192 | flex-direction: column; 193 | padding: 0 1.25rem; 194 | } 195 | 196 | .rooms .room img { 197 | border-radius: 0.188rem; 198 | } 199 | 200 | .rooms .room h3 { 201 | padding-top: 1.25rem; 202 | font-weight: 500; 203 | font-size: 1.313rem; 204 | } 205 | 206 | .rooms .room .list { 207 | padding: 0.938rem 0 1.875rem 0; 208 | } 209 | 210 | .rooms .room .list ul { 211 | list-style: disc; 212 | padding: 0 1.125rem; 213 | font-size: 1.063rem; 214 | } 215 | 216 | .rooms .room .list ul li { 217 | padding: 0.313rem 0; 218 | } 219 | 220 | .rooms .room .btn { 221 | width: 100%; 222 | margin-top: 0.625rem; 223 | text-align: center; 224 | } 225 | 226 | .rooms .room .btn:hover { 227 | background: #3cce96; 228 | color: #fff; 229 | } 230 | 231 | /* Contact */ 232 | .contact h2 { 233 | font-weight: 500; 234 | padding-top: 0.625rem 0; 235 | } 236 | 237 | .contact form { 238 | display: flex; 239 | flex-direction: column; 240 | align-items: flex-start; 241 | justify-content: center; 242 | width: 100%; 243 | } 244 | 245 | .contact input { 246 | width: 100%; 247 | padding: 0.625rem; 248 | border: 0.063rem solid #ddd; 249 | } 250 | 251 | .contact input:focus { 252 | outline: none; 253 | border: 0.063rem solid #59d8a7; 254 | font-size: 0.825rem; 255 | } 256 | 257 | .contact .form-group { 258 | padding-bottom:1.25rem; 259 | width: 100%; 260 | } 261 | 262 | .form-group label { 263 | display: none; 264 | } 265 | 266 | .contact .btn { 267 | padding:0.75rem; 268 | } 269 | 270 | /* About-info */ 271 | .hero.about-post { 272 | background: url(../img/home/about-post.jpg) no-repeat center center/cover; 273 | height: 50vh; 274 | } 275 | 276 | .hero.about-post .content { 277 | padding-top: 1.25rem; 278 | } 279 | 280 | .hero.about-post .content h1 { 281 | font-size: 4.375rem; 282 | } 283 | 284 | .post { 285 | display: flex; 286 | flex-direction: column; 287 | align-items: flex-start; 288 | justify-content: center; 289 | padding: 2.5rem 2.813rem; 290 | font-weight: 500; 291 | font-size: 1.094rem; 292 | text-align: center; 293 | } 294 | 295 | .post h1 { 296 | font-weight: 500; 297 | padding-top: 0.625rem; 298 | font-size: 2.125rem; 299 | } 300 | 301 | .post-one { 302 | padding: 1.875rem 0 1.875rem; 303 | border-bottom: 0.063rem solid #3cce96; 304 | } 305 | 306 | .rooms.about-rooms .btn:hover { 307 | background: #14af74; 308 | } 309 | 310 | .post-two { 311 | padding: 0 0 1.25rem; 312 | margin: 0 0 1.875rem; 313 | border-bottom: 0.063rem solid #14af74; 314 | } 315 | 316 | .post-two:last-child { 317 | border-bottom: none; 318 | } 319 | 320 | .contact-info { 321 | display: flex; 322 | align-items: center; 323 | justify-content: center; 324 | text-align: center; 325 | padding: 0 0 1.875rem; 326 | font-size: 1.25rem; 327 | font-weight: 500; 328 | } 329 | 330 | .contact-info p { 331 | padding: 0 1.25rem; 332 | } 333 | 334 | .contact-info i { 335 | color: #aaa; 336 | padding: 0.625rem; 337 | } 338 | 339 | .contact-info p:last-child { 340 | background: #3cce96; 341 | color: #fff; 342 | padding: 0.938rem; 343 | border: 0.063rem solid #ddd; 344 | } 345 | 346 | /* Thank you */ 347 | .container { 348 | background-color: #080723; 349 | height: 100vh; 350 | color: #fff; 351 | } 352 | 353 | .thankyou { 354 | display: flex; 355 | flex-direction: column; 356 | align-items: center; 357 | justify-content: center; 358 | text-align: center; 359 | height: 80%; 360 | margin: 0 3.125rem; 361 | } 362 | 363 | .thankyou .content { 364 | background: url('../img/home/thankyou.gif') no-repeat center center/cover; 365 | padding-top: 25rem; 366 | font-weight: 500; 367 | } 368 | 369 | .thankyou .content h1 { 370 | font-size: 2.813rem; 371 | background-color: #0284d0; 372 | padding: 0.313rem; 373 | border-radius: 0.313rem; 374 | } 375 | 376 | .thankyou .content p { 377 | font-size: 0.95rem; 378 | } 379 | 380 | .footer-thankyou { 381 | display: flex; 382 | flex-direction: column; 383 | align-items: center; 384 | justify-content: center; 385 | text-align: center; 386 | margin-top: 3.125rem; 387 | } 388 | 389 | .footer-thankyou .socials a { 390 | font-size: 1rem; 391 | color: #0284d0; 392 | } 393 | 394 | .footer-thankyou .socials a:hover { 395 | color: #fff; 396 | } 397 | /* Footer */ 398 | .footer { 399 | display: flex; 400 | flex-direction: column; 401 | align-items: center; 402 | justify-content: center; 403 | text-align: center; 404 | padding: 1.875rem; 405 | } 406 | 407 | .socials a { 408 | font-size: 1.25rem; 409 | color: #fff; 410 | padding: 0.5rem 0.625rem; 411 | } 412 | 413 | .socials a:hover { 414 | color: #14af74; 415 | } 416 | 417 | /* Media queries */ 418 | /* ? @900px */ 419 | @media(max-width: 56.25rem) { 420 | .navbar .logo { 421 | order: 1; 422 | padding: 0.938rem 0; 423 | transform: none; 424 | } 425 | 426 | .navbar nav { 427 | order: 3; 428 | } 429 | 430 | .navbar .social { 431 | display: none; 432 | order: 2; 433 | } 434 | 435 | .hero .content h1 { 436 | font-size: 4.688rem; 437 | } 438 | 439 | .hero .content p { 440 | font-size: 1.25rem; 441 | } 442 | } 443 | 444 | /* ? @768px */ 445 | @media(max-width: 48rem) { 446 | .flex-items { 447 | flex-direction: column; 448 | } 449 | 450 | section.flex-columns .column { 451 | flex: 100%; 452 | max-width: 100%; 453 | } 454 | 455 | section.flex-grid .column { 456 | flex: 50%; 457 | max-width: 50%; 458 | } 459 | 460 | .rooms .room { 461 | flex-direction: column; 462 | padding: 0.313rem 6.25rem; 463 | } 464 | 465 | .rooms .room > div { 466 | padding: 0; 467 | } 468 | } 469 | 470 | /* ? @600px */ 471 | @media(max-width: 37.5rem) { 472 | .navbar { 473 | flex-direction: column; 474 | height: 6.875rem; 475 | } 476 | 477 | .navbar .logo { 478 | padding: 0 1.25rem 0.938rem; 479 | } 480 | 481 | .navbar nav a { 482 | padding: 0.938rem 0.813rem; 483 | } 484 | } 485 | 486 | /* ? @500px */ 487 | @media(max-width: 31.25rem) { 488 | .hero .content { 489 | line-height: 1.6; 490 | } 491 | 492 | .hero .content p { 493 | font-size: 1.188rem; 494 | } 495 | 496 | .rooms .room { 497 | padding: 0.625rem 1.875rem; 498 | } 499 | } 500 | 501 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 16 | 17 | 18 | 19 | 20 | 21 | 24 | 25 | 26 | Welcome To Zeitaku 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 |
39 | 64 | 65 |
66 |

Enjoy Your Stay

67 |

We give you a legendary welcome, when you come back

68 | 69 | Read More 70 | 71 |
72 |
73 | 74 | 75 |
76 |
77 |
78 |
79 | 80 |
81 |

Great Meals

82 |

Lorem ipsum dolor sit, amet consectetur adipisicing elit. Delectus, autem?

83 |
84 |
85 | 86 |
87 | 88 |
89 |

Great Location

90 |

Lorem ipsum dolor sit, amet consectetur adipisicing elit. Delectus, autem?

91 |
92 |
93 | 94 |
95 | 96 |
97 |

Fitness Room

98 |

Lorem ipsum dolor sit, amet consectetur adipisicing elit. Delectus, autem?

99 |
100 |
101 |
102 |
103 |
104 | 105 | 106 |
107 |
108 |
109 |
110 | 111 |
112 |
113 | 114 |
115 |
116 |

About Us

117 |

A Brief History Of Zeitaku

118 |

119 | Zeitaku, founded by 'Uzumaki Naruto' and the 120 | 'Uchiha' clan 50 years ago. These families have been in the hospitality industry ever 121 | since. Although it has undergone quite a bit of modernization and upkeep over the years, the main 122 | attraction, namely the Hokage molded statue and gorgeous hidden leaf village tress have remained the 123 | center for it's appeal. 124 |

125 | Learn More 126 |
127 |
128 |
129 |
130 | 131 | 132 |
133 |
134 |

What would you like us to prepare for you?

135 |

Our Kitchen

136 |

Lorem ipsum dolor sit amet consectetur adipisicing elit. Voluptatibus aperiam, asperiores distinctio 137 | deserun.

138 |
139 |
140 |
141 | 145 | 146 | 147 | 148 | 152 | 153 | 154 |
155 | 156 |
157 | 161 | 162 | 163 | 164 | 170 | 171 | 172 |
173 | 174 |
175 | 179 | 180 | 181 | 182 | 187 | 188 | 189 |
190 | 191 |
192 | 196 | 197 | 198 | 199 | 204 | 205 | 206 |
207 |
208 |
209 | 210 | 211 |
212 |
213 |

Book your accomodations now!

214 |

Rooms

215 |

Lorem ipsum dolor sit amet consectetur adipisicing elit. Voluptatibus aperiam, asperiores distinctio 216 | deserun.

217 |
218 |
219 |
220 | 221 |
222 |

Standard Room

223 |
    224 |
  • Standard condition
  • 225 |
  • Single Size
  • 226 |
  • Room service
  • 227 |
228 | Book Now 229 |
230 |
231 | 232 |
233 | 234 |
235 |

Premium Room

236 |
    237 |
  • Premium Room
  • 238 |
  • Double Size
  • 239 |
  • Room service
  • 240 |
241 | Book Now 242 |
243 |
244 | 245 |
246 | 247 |
248 |

Deluxe Room

249 |
    250 |
  • Deluxe Room
  • 251 |
  • Deluxe Size
  • 252 |
  • Room service
  • 253 |
254 | Book Now 255 |
256 |
257 |
258 |
259 | 260 | 261 |
262 |
263 |
264 |
265 | 266 |
267 |
268 | 269 |
270 |
271 |

Contact

272 |
273 |
274 | 275 | 276 |
277 | 278 |
279 | 280 | 281 |
282 | 283 |
284 | 285 | 286 |
287 |

Submit this form for a TOP SECRET PAGE!!!

288 | 289 |
290 |
291 |
292 | 293 | 294 |
295 |
296 |
297 |
298 |
299 | 300 | 301 |
302 |
303 | 304 | 305 | 307 | 308 |
309 |

Copyright © 2020   |   Zeitaku 310 |

311 |
312 | 313 | 314 | --------------------------------------------------------------------------------