├── cleaning_services_website ├── assets │ ├── css │ │ └── main.css │ └── js │ │ └── main.js └── index.html ├── clothes_ecommerce_website ├── assets │ ├── css │ │ └── main.css │ └── js │ │ └── main.js └── index.html ├── digital-agency ├── about.html ├── assets │ ├── css │ │ └── main.css │ └── js │ │ └── main.js ├── images │ ├── about-img2.jpg │ ├── aboutimg.jpg │ ├── drive-revenue.png │ ├── grow-market-share.png │ ├── increase-customer-lifetime-value.png │ ├── logos │ │ ├── logo1.svg │ │ ├── logo10.svg │ │ ├── logo11.svg │ │ ├── logo12.svg │ │ ├── logo13.svg │ │ ├── logo14.svg │ │ ├── logo15.svg │ │ ├── logo16.svg │ │ ├── logo2.svg │ │ ├── logo3.svg │ │ ├── logo4.svg │ │ ├── logo5.svg │ │ ├── logo6.svg │ │ ├── logo7.svg │ │ ├── logo8.svg │ │ └── logo9.svg │ ├── mainlogo.svg │ ├── office.jpg │ ├── services-pattern.jpg │ ├── team-1.jpg │ ├── team │ │ ├── t-1.jpg │ │ ├── t-2.jpg │ │ ├── t-3.jpg │ │ ├── t-4.jpg │ │ ├── t-5.jpg │ │ ├── t-6.jpg │ │ ├── t-7.jpg │ │ └── t-8.jpg │ └── work-1.jpg ├── index.html ├── industries.html ├── services.html └── work.html ├── digital_marketing ├── about.html ├── assets │ ├── css │ │ └── style.css │ ├── images │ │ ├── allbanner.jpg │ │ ├── b-card.png │ │ ├── c-1.jpg │ │ ├── c-2.jpg │ │ ├── c-3.jpg │ │ ├── c-4.jpg │ │ ├── city-1.jpg │ │ ├── city-2.jpg │ │ ├── city-4.jpg │ │ ├── home │ │ │ ├── Banner-1.jpg │ │ │ ├── Banner-2.jpg │ │ │ ├── Banner-3.jpg │ │ │ ├── Banner-4.jpg │ │ │ ├── Banner-5.jpg │ │ │ ├── team-1.jpg │ │ │ ├── team-2.jpg │ │ │ ├── team-3.jpg │ │ │ ├── team-4.jpg │ │ │ └── team-5.jpg │ │ ├── logos │ │ │ ├── favicon.png │ │ │ ├── logo.svg │ │ │ ├── logo1.svg │ │ │ ├── logo10.svg │ │ │ ├── logo11.svg │ │ │ ├── logo12.svg │ │ │ ├── logo13.svg │ │ │ ├── logo14.svg │ │ │ ├── logo15.svg │ │ │ ├── logo16.svg │ │ │ ├── logo2.svg │ │ │ ├── logo3.svg │ │ │ ├── logo4.svg │ │ │ ├── logo5.svg │ │ │ ├── logo6.svg │ │ │ ├── logo7.svg │ │ │ ├── logo8.svg │ │ │ └── logo9.svg │ │ ├── m1.jpg │ │ ├── m2.jpg │ │ ├── m3.jpg │ │ ├── m4.jpg │ │ └── video.mp4 │ └── js │ │ └── main.js ├── blog.html ├── contact.html ├── index.html └── work.html ├── ems ├── assets │ ├── css │ │ └── style.css │ ├── images │ │ ├── bg.jpg │ │ ├── logo.svg │ │ ├── user-avatar.png │ │ ├── user-avatar2.png │ │ ├── userimg.jpg │ │ └── userimgfull.jpg │ └── js │ │ └── main.js ├── attendance.html ├── index.html ├── login.html ├── register.html └── user-profile.html ├── gym_website ├── assets │ ├── css │ │ └── main.css │ └── js │ │ └── main.js └── index.html ├── juice ├── about.html ├── assets │ ├── css │ │ └── style.css │ ├── images │ │ ├── Slide 4 │ │ │ ├── 4th-Slide-Image.png │ │ │ └── 4th-Slider-gif.gif │ │ ├── Slide 5 │ │ │ ├── 5th Slide 1.Mp4 │ │ │ └── 5th Slide 2.Mp4 │ │ ├── Slide 6 │ │ │ ├── 6th-Slide-1.png │ │ │ ├── 6th-Slide-2.png │ │ │ ├── 6th-Slide-3.png │ │ │ └── 6th-Slide-4.png │ │ ├── animations │ │ │ ├── arrow.png │ │ │ ├── first-Slide-Sun.gif │ │ │ ├── juice1.gif │ │ │ └── man.gif │ │ ├── background.png │ │ ├── background2.jpg │ │ ├── carousel1.png │ │ ├── carousel2.png │ │ ├── gif-bg.png │ │ ├── logos │ │ │ ├── logo.png │ │ │ └── logofavicon.png │ │ └── product-images │ │ │ ├── 3rd-slide-Image-1.png │ │ │ ├── 3rd-slide-Image-2.png │ │ │ ├── 3rd-slide-Image-3.png │ │ │ └── 3rd-slide-Image-4.png │ └── js │ │ └── main.js ├── contact.html ├── index.html └── shop.html ├── nft_website ├── assets │ ├── css │ │ └── main.css │ └── js │ │ └── main.js └── index.html ├── nice-shot ├── about.html ├── blog-single.html ├── blogs.html ├── contact.html ├── css │ └── style.css ├── img │ ├── about.jpg │ ├── background.jpg │ ├── blog-1.jpg │ ├── blog-2.jpg │ ├── blog-3.jpg │ ├── cinematography.jpg │ ├── gallery-rem.jpg │ ├── gallery1.jpg │ ├── gallery10.jpg │ ├── gallery11.jpg │ ├── gallery12.jpg │ ├── gallery13.jpg │ ├── gallery14.jpg │ ├── gallery2.jpg │ ├── gallery3.jpg │ ├── gallery4.jpg │ ├── gallery5.jpg │ ├── gallery6.jpg │ ├── gallery7.jpg │ ├── gallery8.jpg │ ├── gallery9.jpg │ ├── insta-1.jpg │ ├── insta-2.jpg │ ├── insta-3.jpg │ ├── insta-4.jpg │ ├── insta-5.jpg │ ├── insta-6.jpg │ ├── photography-logo.png │ ├── photography.jpg │ ├── slider-1.jpg │ ├── slider-2.jpg │ ├── slider-3.jpg │ ├── team1.jpg │ ├── team2.jpg │ ├── team3.jpg │ ├── testimonial-1.jpg │ ├── testimonial-2.jpg │ ├── testimonial-3.jpg │ └── videography.jpg ├── index.html ├── js │ └── main.js ├── portfolio.html └── servicesandpricing.html ├── plants_ecommerce_website ├── assets │ ├── css │ │ └── main.css │ └── js │ │ └── main.js └── index.html ├── point-of-contact ├── accept.html ├── assets │ ├── css │ │ └── style.css │ ├── images │ │ ├── backlogin.jpg │ │ ├── bg.png │ │ ├── logo.png │ │ ├── logo.svg │ │ ├── user-avatar.png │ │ ├── user-avatar2.png │ │ ├── userimg.jpg │ │ └── userimgfull.jpg │ └── js │ │ └── main.js ├── denyandcounter.html ├── index.html ├── login.html ├── post.html ├── requesting-to-buy.html ├── search.html ├── sell-counter-deny.html └── setting.html ├── readme.md ├── seahomes ├── assets │ ├── css │ │ ├── responsive.css │ │ └── style.css │ ├── images │ │ ├── exteriors │ │ │ ├── 1.jpg │ │ │ ├── 2.jpg │ │ │ └── 2nd-banner.jpg │ │ ├── home │ │ │ ├── banner.jpg │ │ │ ├── bg-dark.png │ │ │ ├── city-view.jpg │ │ │ ├── designed-1.jpg │ │ │ ├── designed-2.jpg │ │ │ ├── designed-3.jpg │ │ │ ├── exterior.jpg │ │ │ ├── footer-1.jpg │ │ │ ├── footer-2.jpg │ │ │ ├── interior.jpg │ │ │ ├── mid-banner.jpg │ │ │ ├── sea1.jpg │ │ │ ├── sea2.jpg │ │ │ ├── sea3.jpg │ │ │ ├── sea4.jpg │ │ │ ├── sea5.jpg │ │ │ ├── sea6.jpg │ │ │ ├── slider-1.jpg │ │ │ ├── slider-2.jpg │ │ │ ├── slider-3.jpg │ │ │ ├── team-1.jpg │ │ │ ├── team-2.jpg │ │ │ ├── team-3.jpg │ │ │ ├── team-4.jpg │ │ │ └── videobanner.jpg │ │ ├── interiors │ │ │ ├── 1.jpg │ │ │ ├── 2.jpg │ │ │ └── 3.jpg │ │ └── logos │ │ │ ├── favicon.png │ │ │ └── logo.png │ └── js │ │ └── main.js ├── contact.html ├── exteriors.html ├── index.html └── interiors.html ├── text.html ├── tiles100 ├── about.html ├── assets │ ├── css │ │ ├── responsive.css │ │ └── style.css │ ├── images │ │ ├── flow-1.jpg │ │ ├── flow-2.jpg │ │ ├── flow-3.jpg │ │ ├── flow-4.jpg │ │ ├── flow-5.jpg │ │ ├── flow-6.jpg │ │ ├── flow-7.jpg │ │ ├── flow-8.jpg │ │ ├── handmade1.jpg │ │ ├── handmade2.jpg │ │ ├── handmade3.jpg │ │ ├── icons │ │ │ └── down-caret.png │ │ ├── img2.jpg │ │ ├── logos │ │ │ ├── logo.gif │ │ │ ├── logo.svg │ │ │ └── logofavicon.png │ │ ├── newsletter.jpg │ │ ├── soul1.jpg │ │ ├── soul2.jpg │ │ ├── soul3.jpg │ │ ├── soul4.jpg │ │ ├── team │ │ │ ├── team-1.jpg │ │ │ ├── team-2.jpg │ │ │ ├── team-3.jpg │ │ │ ├── team-4.jpg │ │ │ ├── team-5.jpg │ │ │ ├── team-6.jpg │ │ │ └── team-all.jpg │ │ ├── tilebg.jpg │ │ └── video.mp4 │ └── js │ │ └── main.js ├── contact.html ├── faq.html ├── gallery.html └── index.html └── yoga_website ├── assets ├── css │ └── main.css └── js │ └── main.js └── index.html /cleaning_services_website/assets/css/main.css: -------------------------------------------------------------------------------- 1 | * { 2 | margin: 0; 3 | padding: 0; 4 | box-sizing: border-box; 5 | } -------------------------------------------------------------------------------- /cleaning_services_website/assets/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/cleaning_services_website/assets/js/main.js -------------------------------------------------------------------------------- /cleaning_services_website/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | Cleaning Services Website || Homepage - HTML DEMO Template 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /clothes_ecommerce_website/assets/css/main.css: -------------------------------------------------------------------------------- 1 | * { 2 | margin: 0; 3 | padding: 0; 4 | box-sizing: border-box; 5 | } -------------------------------------------------------------------------------- /clothes_ecommerce_website/assets/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/clothes_ecommerce_website/assets/js/main.js -------------------------------------------------------------------------------- /clothes_ecommerce_website/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | Clothes Ecommerce Website || Homepage - HTML DEMO Template 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /digital-agency/assets/js/main.js: -------------------------------------------------------------------------------- 1 | new WOW().init(); 2 | 3 | $(document).ready(function() { 4 | $(".servicesOne").mouseenter(function() { 5 | $("#services").css({ 6 | "background-image": "url('https://images.pexels.com/photos/3970330/pexels-photo-3970330.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1')", 7 | "background-size": "cover", 8 | "transition": "0.6s ease" 9 | }); 10 | }); 11 | $(".servicesOne").mouseleave(function() { 12 | $("#services").css({ 13 | "background": "black", 14 | "background-size": "cover", 15 | "transition": "0.6s ease" 16 | }); 17 | }); 18 | $(".servicesTwo").mouseenter(function() { 19 | $("#services").css({ 20 | "background-image": "url('https://images.pexels.com/photos/4348401/pexels-photo-4348401.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1')", 21 | "background-size": "cover", 22 | "transition": "0.6s ease" 23 | }); 24 | }); 25 | $(".servicesTwo").mouseleave(function() { 26 | $("#services").css({ 27 | "background": "black", 28 | "background-size": "cover", 29 | "transition": "0.6s ease" 30 | }); 31 | }); 32 | $(".servicesThree").mouseenter(function() { 33 | $("#services").css({ 34 | "background-image": "url('https://images.pexels.com/photos/3861972/pexels-photo-3861972.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1')", 35 | "background-size": "cover", 36 | "transition": "0.6s ease" 37 | }); 38 | }); 39 | $(".servicesThree").mouseleave(function() { 40 | $("#services").css({ 41 | "background": "black", 42 | "background-size": "cover", 43 | "transition": "0.6s ease" 44 | }); 45 | }); 46 | }); 47 | 48 | function navFunction(x) { 49 | x.classList.toggle("change"); 50 | } 51 | 52 | const btn = document.getElementById("btn"); 53 | const nav = document.getElementById("nav"); 54 | const navContent = document.getElementsByClassName("menulinks"); 55 | 56 | btn.addEventListener("click", () => { 57 | nav.classList.toggle("active"); 58 | btn.classList.toggle("active"); 59 | }); -------------------------------------------------------------------------------- /digital-agency/images/about-img2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/digital-agency/images/about-img2.jpg -------------------------------------------------------------------------------- /digital-agency/images/aboutimg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/digital-agency/images/aboutimg.jpg -------------------------------------------------------------------------------- /digital-agency/images/drive-revenue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/digital-agency/images/drive-revenue.png -------------------------------------------------------------------------------- /digital-agency/images/grow-market-share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/digital-agency/images/grow-market-share.png -------------------------------------------------------------------------------- /digital-agency/images/increase-customer-lifetime-value.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/digital-agency/images/increase-customer-lifetime-value.png -------------------------------------------------------------------------------- /digital-agency/images/logos/logo1.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /digital-agency/images/logos/logo12.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /digital-agency/images/logos/logo13.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /digital-agency/images/logos/logo14.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /digital-agency/images/logos/logo15.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /digital-agency/images/logos/logo16.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /digital-agency/images/logos/logo2.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /digital-agency/images/logos/logo3.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /digital-agency/images/logos/logo5.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /digital-agency/images/mainlogo.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /digital-agency/images/office.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/digital-agency/images/office.jpg -------------------------------------------------------------------------------- /digital-agency/images/services-pattern.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/digital-agency/images/services-pattern.jpg -------------------------------------------------------------------------------- /digital-agency/images/team-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/digital-agency/images/team-1.jpg -------------------------------------------------------------------------------- /digital-agency/images/team/t-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/digital-agency/images/team/t-1.jpg -------------------------------------------------------------------------------- /digital-agency/images/team/t-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/digital-agency/images/team/t-2.jpg -------------------------------------------------------------------------------- /digital-agency/images/team/t-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/digital-agency/images/team/t-3.jpg -------------------------------------------------------------------------------- /digital-agency/images/team/t-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/digital-agency/images/team/t-4.jpg -------------------------------------------------------------------------------- /digital-agency/images/team/t-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/digital-agency/images/team/t-5.jpg -------------------------------------------------------------------------------- /digital-agency/images/team/t-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/digital-agency/images/team/t-6.jpg -------------------------------------------------------------------------------- /digital-agency/images/team/t-7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/digital-agency/images/team/t-7.jpg -------------------------------------------------------------------------------- /digital-agency/images/team/t-8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/digital-agency/images/team/t-8.jpg -------------------------------------------------------------------------------- /digital-agency/images/work-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/digital-agency/images/work-1.jpg -------------------------------------------------------------------------------- /digital_marketing/assets/images/allbanner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/digital_marketing/assets/images/allbanner.jpg -------------------------------------------------------------------------------- /digital_marketing/assets/images/b-card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/digital_marketing/assets/images/b-card.png -------------------------------------------------------------------------------- /digital_marketing/assets/images/c-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/digital_marketing/assets/images/c-1.jpg -------------------------------------------------------------------------------- /digital_marketing/assets/images/c-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/digital_marketing/assets/images/c-2.jpg -------------------------------------------------------------------------------- /digital_marketing/assets/images/c-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/digital_marketing/assets/images/c-3.jpg -------------------------------------------------------------------------------- /digital_marketing/assets/images/c-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/digital_marketing/assets/images/c-4.jpg -------------------------------------------------------------------------------- /digital_marketing/assets/images/city-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/digital_marketing/assets/images/city-1.jpg -------------------------------------------------------------------------------- /digital_marketing/assets/images/city-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/digital_marketing/assets/images/city-2.jpg -------------------------------------------------------------------------------- /digital_marketing/assets/images/city-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/digital_marketing/assets/images/city-4.jpg -------------------------------------------------------------------------------- /digital_marketing/assets/images/home/Banner-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/digital_marketing/assets/images/home/Banner-1.jpg -------------------------------------------------------------------------------- /digital_marketing/assets/images/home/Banner-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/digital_marketing/assets/images/home/Banner-2.jpg -------------------------------------------------------------------------------- /digital_marketing/assets/images/home/Banner-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/digital_marketing/assets/images/home/Banner-3.jpg -------------------------------------------------------------------------------- /digital_marketing/assets/images/home/Banner-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/digital_marketing/assets/images/home/Banner-4.jpg -------------------------------------------------------------------------------- /digital_marketing/assets/images/home/Banner-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/digital_marketing/assets/images/home/Banner-5.jpg -------------------------------------------------------------------------------- /digital_marketing/assets/images/home/team-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/digital_marketing/assets/images/home/team-1.jpg -------------------------------------------------------------------------------- /digital_marketing/assets/images/home/team-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/digital_marketing/assets/images/home/team-2.jpg -------------------------------------------------------------------------------- /digital_marketing/assets/images/home/team-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/digital_marketing/assets/images/home/team-3.jpg -------------------------------------------------------------------------------- /digital_marketing/assets/images/home/team-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/digital_marketing/assets/images/home/team-4.jpg -------------------------------------------------------------------------------- /digital_marketing/assets/images/home/team-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/digital_marketing/assets/images/home/team-5.jpg -------------------------------------------------------------------------------- /digital_marketing/assets/images/logos/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/digital_marketing/assets/images/logos/favicon.png -------------------------------------------------------------------------------- /digital_marketing/assets/images/logos/logo1.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /digital_marketing/assets/images/logos/logo12.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /digital_marketing/assets/images/logos/logo13.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /digital_marketing/assets/images/logos/logo14.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /digital_marketing/assets/images/logos/logo15.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /digital_marketing/assets/images/logos/logo16.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /digital_marketing/assets/images/logos/logo2.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /digital_marketing/assets/images/logos/logo3.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /digital_marketing/assets/images/logos/logo5.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /digital_marketing/assets/images/m1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/digital_marketing/assets/images/m1.jpg -------------------------------------------------------------------------------- /digital_marketing/assets/images/m2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/digital_marketing/assets/images/m2.jpg -------------------------------------------------------------------------------- /digital_marketing/assets/images/m3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/digital_marketing/assets/images/m3.jpg -------------------------------------------------------------------------------- /digital_marketing/assets/images/m4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/digital_marketing/assets/images/m4.jpg -------------------------------------------------------------------------------- /digital_marketing/assets/images/video.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/digital_marketing/assets/images/video.mp4 -------------------------------------------------------------------------------- /digital_marketing/assets/js/main.js: -------------------------------------------------------------------------------- 1 | $(function () { 2 | "use strict"; 3 | 4 | //====== Magnific Popup 5 | 6 | $(".video-popup").magnificPopup({ 7 | type: "iframe", 8 | // other options 9 | }); 10 | 11 | //===== Magnific Popup 12 | 13 | $(".image-popup").magnificPopup({ 14 | type: "image", 15 | gallery: { 16 | enabled: true, 17 | }, 18 | }); 19 | 20 | // Go to Top 21 | 22 | // Scroll Event 23 | $(window).on("scroll", function () { 24 | var scrolled = $(window).scrollTop(); 25 | if (scrolled > 300) $(".go-top").addClass("active"); 26 | if (scrolled < 300) $(".go-top").removeClass("active"); 27 | }); 28 | 29 | // Click Event 30 | $(".go-top").on("click", function () { 31 | $("html, body").animate( 32 | { 33 | scrollTop: "0", 34 | }, 35 | 1200 36 | ); 37 | }); 38 | 39 | //===== WOW active 40 | 41 | new WOW().init(); 42 | 43 | //===== 44 | }); 45 | 46 | // scroll to top 47 | 48 | //Get the button 49 | var mybutton = document.getElementById("topBtn"); 50 | 51 | // When the user scrolls down 20px from the top of the document, show the button 52 | window.onscroll = function () { 53 | scrollFunction(); 54 | }; 55 | 56 | function scrollFunction() { 57 | if ( 58 | document.body.scrollTop > 200 || 59 | document.documentElement.scrollTop > 200 60 | ) { 61 | mybutton.style.display = "block"; 62 | } else { 63 | mybutton.style.display = "none"; 64 | } 65 | } 66 | 67 | // When the user clicks on the button, scroll to the top of the document 68 | function topFunction() { 69 | document.body.scrollTop = 0; 70 | document.documentElement.scrollTop = 0; 71 | } 72 | 73 | AOS.init(); 74 | 75 | const cursor = document.querySelector('.cursor'); 76 | document.addEventListener('mousemove', (e) => { 77 | cursor.style.left = e.clientX + 'px'; 78 | cursor.style.top = e.clientY + 'px'; 79 | }); 80 | 81 | $(function () { 82 | $(document).scroll(function () { 83 | var $nav = $(".navbar-scroller"); 84 | $nav.toggleClass('scrolled', $(this).scrollTop() > $nav.height()); 85 | }); 86 | }); 87 | 88 | 89 | $('.owl-location').owlCarousel({ 90 | loop: true, 91 | margin: 10, 92 | nav: true, 93 | autoplay: true, 94 | navText: [ 95 | '', 96 | '' 97 | ], 98 | dots: false, 99 | responsive: { 100 | 0: { 101 | items: 1 102 | }, 103 | 600: { 104 | items: 1 105 | }, 106 | 1000: { 107 | items: 1 108 | } 109 | } 110 | }); 111 | 112 | document.getElementById('playVid').onclick = function () { 113 | document.getElementById('vid').play(); 114 | }; 115 | 116 | function pauseVid() { 117 | document.getElementById('vid').pause(); 118 | } -------------------------------------------------------------------------------- /ems/assets/images/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/ems/assets/images/bg.jpg -------------------------------------------------------------------------------- /ems/assets/images/logo.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ems/assets/images/user-avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/ems/assets/images/user-avatar.png -------------------------------------------------------------------------------- /ems/assets/images/user-avatar2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/ems/assets/images/user-avatar2.png -------------------------------------------------------------------------------- /ems/assets/images/userimg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/ems/assets/images/userimg.jpg -------------------------------------------------------------------------------- /ems/assets/images/userimgfull.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/ems/assets/images/userimgfull.jpg -------------------------------------------------------------------------------- /ems/assets/js/main.js: -------------------------------------------------------------------------------- 1 | $(function () { 2 | "use strict"; 3 | 4 | // read more btn toggle 5 | 6 | $(document).ready(function () { 7 | $(".read-more").click(function () { 8 | $(this).text($(this).text() == "Read More" ? "Read Less" : "Read More"); 9 | }); 10 | }); 11 | }); 12 | 13 | // Go to Top 14 | 15 | // scroll to top 16 | 17 | //Get the button 18 | var mybutton = document.getElementById("topBtn"); 19 | 20 | // When the user scrolls down 20px from the top of the document, show the button 21 | window.onscroll = function () { 22 | scrollFunction(); 23 | }; 24 | 25 | function scrollFunction() { 26 | if ( 27 | document.body.scrollTop > 200 || 28 | document.documentElement.scrollTop > 200 29 | ) { 30 | mybutton.style.display = "block"; 31 | } else { 32 | mybutton.style.display = "none"; 33 | } 34 | } 35 | 36 | // When the user clicks on the button, scroll to the top of the document 37 | function topFunction() { 38 | document.body.scrollTop = 0; 39 | document.documentElement.scrollTop = 0; 40 | } 41 | 42 | // Read More Read Less 43 | 44 | // var dayselect = document.getElementById("dayselect"); 45 | // var selectedDay = document.querySelectorAll(".selectedday"); 46 | // for (var i = 0; i < selectedDay.length; i++) 47 | // selectedDay[i].addEventListener("click", function handleClick() { 48 | // var text = this.getAttribute("title"); 49 | // dayselect.innerHTML = text; 50 | // }); 51 | -------------------------------------------------------------------------------- /ems/login.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | EMS || Login Page - HTML DEMO Template 9 | 10 | 11 | 12 | 13 | 14 | 15 | 17 | 19 | 20 | 21 | 22 | 23 |
25 |
27 | 28 |

Login

29 |
30 | 31 |
32 |
33 | 35 | 37 |
38 |
39 | 42 |
43 | 44 |

New Member? Sign Up

45 |
46 |
47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 67 | 68 | 69 | -------------------------------------------------------------------------------- /ems/register.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | EMS || Register Page - HTML DEMO Template 9 | 10 | 11 | 12 | 13 | 14 | 15 | 17 | 19 | 20 | 21 | 22 | 23 |
25 |
27 | 28 |

Register

29 |
30 | 31 |
32 |
33 | 34 |
35 |
36 | 38 | 40 |
41 |
42 | 45 |
46 | 47 |

Already a Member? Sign In

48 |
49 |
50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 70 | 71 | 72 | -------------------------------------------------------------------------------- /gym_website/assets/css/main.css: -------------------------------------------------------------------------------- 1 | * { 2 | margin: 0; 3 | padding: 0; 4 | box-sizing: border-box; 5 | } -------------------------------------------------------------------------------- /gym_website/assets/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/gym_website/assets/js/main.js -------------------------------------------------------------------------------- /gym_website/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | Gym Website || Homepage - HTML DEMO Template 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /juice/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/juice/about.html -------------------------------------------------------------------------------- /juice/assets/images/Slide 4/4th-Slide-Image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/juice/assets/images/Slide 4/4th-Slide-Image.png -------------------------------------------------------------------------------- /juice/assets/images/Slide 4/4th-Slider-gif.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/juice/assets/images/Slide 4/4th-Slider-gif.gif -------------------------------------------------------------------------------- /juice/assets/images/Slide 5/5th Slide 1.Mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/juice/assets/images/Slide 5/5th Slide 1.Mp4 -------------------------------------------------------------------------------- /juice/assets/images/Slide 5/5th Slide 2.Mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/juice/assets/images/Slide 5/5th Slide 2.Mp4 -------------------------------------------------------------------------------- /juice/assets/images/Slide 6/6th-Slide-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/juice/assets/images/Slide 6/6th-Slide-1.png -------------------------------------------------------------------------------- /juice/assets/images/Slide 6/6th-Slide-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/juice/assets/images/Slide 6/6th-Slide-2.png -------------------------------------------------------------------------------- /juice/assets/images/Slide 6/6th-Slide-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/juice/assets/images/Slide 6/6th-Slide-3.png -------------------------------------------------------------------------------- /juice/assets/images/Slide 6/6th-Slide-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/juice/assets/images/Slide 6/6th-Slide-4.png -------------------------------------------------------------------------------- /juice/assets/images/animations/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/juice/assets/images/animations/arrow.png -------------------------------------------------------------------------------- /juice/assets/images/animations/first-Slide-Sun.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/juice/assets/images/animations/first-Slide-Sun.gif -------------------------------------------------------------------------------- /juice/assets/images/animations/juice1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/juice/assets/images/animations/juice1.gif -------------------------------------------------------------------------------- /juice/assets/images/animations/man.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/juice/assets/images/animations/man.gif -------------------------------------------------------------------------------- /juice/assets/images/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/juice/assets/images/background.png -------------------------------------------------------------------------------- /juice/assets/images/background2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/juice/assets/images/background2.jpg -------------------------------------------------------------------------------- /juice/assets/images/carousel1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/juice/assets/images/carousel1.png -------------------------------------------------------------------------------- /juice/assets/images/carousel2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/juice/assets/images/carousel2.png -------------------------------------------------------------------------------- /juice/assets/images/gif-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/juice/assets/images/gif-bg.png -------------------------------------------------------------------------------- /juice/assets/images/logos/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/juice/assets/images/logos/logo.png -------------------------------------------------------------------------------- /juice/assets/images/logos/logofavicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/juice/assets/images/logos/logofavicon.png -------------------------------------------------------------------------------- /juice/assets/images/product-images/3rd-slide-Image-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/juice/assets/images/product-images/3rd-slide-Image-1.png -------------------------------------------------------------------------------- /juice/assets/images/product-images/3rd-slide-Image-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/juice/assets/images/product-images/3rd-slide-Image-2.png -------------------------------------------------------------------------------- /juice/assets/images/product-images/3rd-slide-Image-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/juice/assets/images/product-images/3rd-slide-Image-3.png -------------------------------------------------------------------------------- /juice/assets/images/product-images/3rd-slide-Image-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/juice/assets/images/product-images/3rd-slide-Image-4.png -------------------------------------------------------------------------------- /juice/assets/js/main.js: -------------------------------------------------------------------------------- 1 | $(function () { 2 | "use strict"; 3 | 4 | ///===== Progress Bar 5 | 6 | if ($(".progress_line").length) { 7 | $(".progress_line").appear( 8 | function () { 9 | var el = $(this); 10 | var percent = el.data("width"); 11 | $(el).css("width", percent + "%"); 12 | }, 13 | { 14 | accY: 0, 15 | } 16 | ); 17 | } 18 | 19 | // Go to Top 20 | 21 | // Scroll Event 22 | $(window).on("scroll", function () { 23 | var scrolled = $(window).scrollTop(); 24 | if (scrolled > 300) $(".go-top").addClass("active"); 25 | if (scrolled < 300) $(".go-top").removeClass("active"); 26 | }); 27 | 28 | // Click Event 29 | $(".go-top").on("click", function () { 30 | $("html, body").animate( 31 | { 32 | scrollTop: "0", 33 | }, 34 | 1200 35 | ); 36 | }); 37 | }); 38 | 39 | function navFunction(x) { 40 | x.classList.toggle("change"); 41 | } 42 | 43 | const btn = document.getElementById("btn"); 44 | const nav = document.getElementById("nav"); 45 | const navContent = document.getElementsByClassName("menulinks"); 46 | 47 | btn.addEventListener("click", () => { 48 | nav.classList.toggle("active"); 49 | btn.classList.toggle("active"); 50 | }); 51 | AOS.init(); 52 | Splitting(); 53 | 54 | var owl = $('.owl-carousel'); 55 | owl.owlCarousel({ 56 | loop: true, 57 | nav: true, 58 | animateOut: 'animate__fadeOutDown', 59 | animateIn: 'animate__fadeInDown', 60 | margin: 0, 61 | items: 1, 62 | navText: [ 63 | '', 64 | '' 65 | ], 66 | responsive: { 67 | 0: { 68 | items: 1 69 | }, 70 | 500: { 71 | items: 1 72 | }, 73 | 1000: { 74 | items: 1 75 | }, 76 | 1500: { 77 | items: 1 78 | }, 79 | 2000: { 80 | items: 1 81 | } 82 | } 83 | }); -------------------------------------------------------------------------------- /juice/contact.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/juice/contact.html -------------------------------------------------------------------------------- /juice/shop.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/juice/shop.html -------------------------------------------------------------------------------- /nft_website/assets/css/main.css: -------------------------------------------------------------------------------- 1 | * { 2 | margin: 0; 3 | padding: 0; 4 | box-sizing: border-box; 5 | } -------------------------------------------------------------------------------- /nft_website/assets/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/nft_website/assets/js/main.js -------------------------------------------------------------------------------- /nft_website/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | NFT Website || Homepage - HTML DEMO Template 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /nice-shot/img/about.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/nice-shot/img/about.jpg -------------------------------------------------------------------------------- /nice-shot/img/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/nice-shot/img/background.jpg -------------------------------------------------------------------------------- /nice-shot/img/blog-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/nice-shot/img/blog-1.jpg -------------------------------------------------------------------------------- /nice-shot/img/blog-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/nice-shot/img/blog-2.jpg -------------------------------------------------------------------------------- /nice-shot/img/blog-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/nice-shot/img/blog-3.jpg -------------------------------------------------------------------------------- /nice-shot/img/cinematography.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/nice-shot/img/cinematography.jpg -------------------------------------------------------------------------------- /nice-shot/img/gallery-rem.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/nice-shot/img/gallery-rem.jpg -------------------------------------------------------------------------------- /nice-shot/img/gallery1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/nice-shot/img/gallery1.jpg -------------------------------------------------------------------------------- /nice-shot/img/gallery10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/nice-shot/img/gallery10.jpg -------------------------------------------------------------------------------- /nice-shot/img/gallery11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/nice-shot/img/gallery11.jpg -------------------------------------------------------------------------------- /nice-shot/img/gallery12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/nice-shot/img/gallery12.jpg -------------------------------------------------------------------------------- /nice-shot/img/gallery13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/nice-shot/img/gallery13.jpg -------------------------------------------------------------------------------- /nice-shot/img/gallery14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/nice-shot/img/gallery14.jpg -------------------------------------------------------------------------------- /nice-shot/img/gallery2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/nice-shot/img/gallery2.jpg -------------------------------------------------------------------------------- /nice-shot/img/gallery3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/nice-shot/img/gallery3.jpg -------------------------------------------------------------------------------- /nice-shot/img/gallery4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/nice-shot/img/gallery4.jpg -------------------------------------------------------------------------------- /nice-shot/img/gallery5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/nice-shot/img/gallery5.jpg -------------------------------------------------------------------------------- /nice-shot/img/gallery6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/nice-shot/img/gallery6.jpg -------------------------------------------------------------------------------- /nice-shot/img/gallery7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/nice-shot/img/gallery7.jpg -------------------------------------------------------------------------------- /nice-shot/img/gallery8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/nice-shot/img/gallery8.jpg -------------------------------------------------------------------------------- /nice-shot/img/gallery9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/nice-shot/img/gallery9.jpg -------------------------------------------------------------------------------- /nice-shot/img/insta-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/nice-shot/img/insta-1.jpg -------------------------------------------------------------------------------- /nice-shot/img/insta-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/nice-shot/img/insta-2.jpg -------------------------------------------------------------------------------- /nice-shot/img/insta-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/nice-shot/img/insta-3.jpg -------------------------------------------------------------------------------- /nice-shot/img/insta-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/nice-shot/img/insta-4.jpg -------------------------------------------------------------------------------- /nice-shot/img/insta-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/nice-shot/img/insta-5.jpg -------------------------------------------------------------------------------- /nice-shot/img/insta-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/nice-shot/img/insta-6.jpg -------------------------------------------------------------------------------- /nice-shot/img/photography-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/nice-shot/img/photography-logo.png -------------------------------------------------------------------------------- /nice-shot/img/photography.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/nice-shot/img/photography.jpg -------------------------------------------------------------------------------- /nice-shot/img/slider-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/nice-shot/img/slider-1.jpg -------------------------------------------------------------------------------- /nice-shot/img/slider-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/nice-shot/img/slider-2.jpg -------------------------------------------------------------------------------- /nice-shot/img/slider-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/nice-shot/img/slider-3.jpg -------------------------------------------------------------------------------- /nice-shot/img/team1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/nice-shot/img/team1.jpg -------------------------------------------------------------------------------- /nice-shot/img/team2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/nice-shot/img/team2.jpg -------------------------------------------------------------------------------- /nice-shot/img/team3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/nice-shot/img/team3.jpg -------------------------------------------------------------------------------- /nice-shot/img/testimonial-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/nice-shot/img/testimonial-1.jpg -------------------------------------------------------------------------------- /nice-shot/img/testimonial-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/nice-shot/img/testimonial-2.jpg -------------------------------------------------------------------------------- /nice-shot/img/testimonial-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/nice-shot/img/testimonial-3.jpg -------------------------------------------------------------------------------- /nice-shot/img/videography.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/nice-shot/img/videography.jpg -------------------------------------------------------------------------------- /plants_ecommerce_website/assets/css/main.css: -------------------------------------------------------------------------------- 1 | * { 2 | margin: 0; 3 | padding: 0; 4 | box-sizing: border-box; 5 | } -------------------------------------------------------------------------------- /plants_ecommerce_website/assets/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/plants_ecommerce_website/assets/js/main.js -------------------------------------------------------------------------------- /plants_ecommerce_website/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | Point Of Contact || Homepage - HTML DEMO Template 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /point-of-contact/assets/images/backlogin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/point-of-contact/assets/images/backlogin.jpg -------------------------------------------------------------------------------- /point-of-contact/assets/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/point-of-contact/assets/images/bg.png -------------------------------------------------------------------------------- /point-of-contact/assets/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/point-of-contact/assets/images/logo.png -------------------------------------------------------------------------------- /point-of-contact/assets/images/user-avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/point-of-contact/assets/images/user-avatar.png -------------------------------------------------------------------------------- /point-of-contact/assets/images/user-avatar2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/point-of-contact/assets/images/user-avatar2.png -------------------------------------------------------------------------------- /point-of-contact/assets/images/userimg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/point-of-contact/assets/images/userimg.jpg -------------------------------------------------------------------------------- /point-of-contact/assets/images/userimgfull.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/point-of-contact/assets/images/userimgfull.jpg -------------------------------------------------------------------------------- /point-of-contact/assets/js/main.js: -------------------------------------------------------------------------------- 1 | $(function () { 2 | "use strict"; 3 | 4 | // read more btn toggle 5 | 6 | $(document).ready(function () { 7 | $(".read-more").click(function () { 8 | $(this).text($(this).text() == "Read More" ? "Read Less" : "Read More"); 9 | }); 10 | }); 11 | }); 12 | 13 | // Go to Top 14 | 15 | // scroll to top 16 | 17 | //Get the button 18 | var mybutton = document.getElementById("topBtn"); 19 | 20 | // When the user scrolls down 20px from the top of the document, show the button 21 | window.onscroll = function () { 22 | scrollFunction(); 23 | }; 24 | 25 | function scrollFunction() { 26 | if ( 27 | document.body.scrollTop > 200 || 28 | document.documentElement.scrollTop > 200 29 | ) { 30 | mybutton.style.display = "block"; 31 | } else { 32 | mybutton.style.display = "none"; 33 | } 34 | } 35 | 36 | // When the user clicks on the button, scroll to the top of the document 37 | function topFunction() { 38 | document.body.scrollTop = 0; 39 | document.documentElement.scrollTop = 0; 40 | } 41 | 42 | // Read More Read Less 43 | 44 | var dayselect = document.getElementById("dayselect"); 45 | var selectedDay = document.querySelectorAll(".selectedday"); 46 | for (var i = 0; i < selectedDay.length; i++) 47 | selectedDay[i].addEventListener("click", function handleClick() { 48 | var text = this.getAttribute("title"); 49 | dayselect.innerHTML = text; 50 | }); 51 | -------------------------------------------------------------------------------- /point-of-contact/login.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | Point Of Contact || Login Page - HTML DEMO Template 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 18 | 20 | 21 | 22 | 23 | 33 | 34 | 35 | 36 |
38 |
40 | 41 |

Login

42 |
43 | 44 |
45 |
46 | 48 | 50 |
51 |
52 | 55 |
56 | 57 |

New to Dashboard?

59 |
60 | 61 | 86 |
87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 107 | 108 | 109 | 123 | 124 | 125 | -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- 1 | # HTML DEMO WEBSITES 2 | 3 | 1. Photograpy Website 4 | 2. Digital Marketing Agency 5 | 3. Digital Agency 6 | 4. Employee management System 7 | 5. Juice Website 8 | 6. Exterior and Interior Design 9 | 7. Portfolio 10 | 8. Tiles Website 11 | 9. Clothes Ecommerce Website 12 | 10. EMS Website 13 | 11. Gym Website 14 | 12. NFT Website 15 | 13. Plants Ecommerce Website 16 | 14. Point Of Contact Website 17 | 15. Yoga Website 18 | 16. Cleaning Services Website 19 | -------------------------------------------------------------------------------- /seahomes/assets/css/responsive.css: -------------------------------------------------------------------------------- 1 | @media screen and (max-width: 2500px) { 2 | } 3 | 4 | @media screen and (max-width: 1800px) { 5 | } 6 | 7 | @media screen and (max-width: 1500px) { 8 | .carousel form { 9 | left: 3%; 10 | } 11 | } 12 | 13 | @media screen and (max-width: 1200px) { 14 | .carousel form { 15 | display: none; 16 | } 17 | } 18 | 19 | @media screen and (max-width: 1024px) { 20 | 21 | .carousel-caption { 22 | /* left: auto; */ 23 | /* right: 15% !important; */ 24 | max-width: 600px; 25 | bottom: 2.25rem; 26 | /* text-align: left; */ 27 | } 28 | 29 | .fs-7 { 30 | font-size: 3rem; 31 | } 32 | } 33 | 34 | @media screen and (max-width: 991px) { 35 | .nav-link:hover::after { 36 | transform: scale(0.2); 37 | /* transform-origin: left; */ 38 | } 39 | .fs-7 { 40 | font-size: 2.5rem; 41 | } 42 | } 43 | 44 | @media screen and (max-width: 768px) { 45 | .carousel-item { 46 | height: 50vh; 47 | } 48 | .fs-7 { 49 | font-size: 2rem; 50 | } 51 | .carousel-caption p { 52 | font-size: 14px !important; 53 | line-height: 1.2; 54 | } 55 | } 56 | 57 | @media screen and (max-width: 576px) { 58 | .fs-7 { 59 | font-size: 1.5rem; 60 | } 61 | .carousel-caption { 62 | left: 15% !important; 63 | right: 15% !important; 64 | text-align: center; 65 | } 66 | .carousel-caption .sm-yellow-line { 67 | margin: auto; 68 | } 69 | } 70 | 71 | @media screen and (max-width: 450px) { 72 | } 73 | 74 | @media screen and (max-width: 360px) { 75 | } 76 | -------------------------------------------------------------------------------- /seahomes/assets/images/exteriors/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/seahomes/assets/images/exteriors/1.jpg -------------------------------------------------------------------------------- /seahomes/assets/images/exteriors/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/seahomes/assets/images/exteriors/2.jpg -------------------------------------------------------------------------------- /seahomes/assets/images/exteriors/2nd-banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/seahomes/assets/images/exteriors/2nd-banner.jpg -------------------------------------------------------------------------------- /seahomes/assets/images/home/banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/seahomes/assets/images/home/banner.jpg -------------------------------------------------------------------------------- /seahomes/assets/images/home/bg-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/seahomes/assets/images/home/bg-dark.png -------------------------------------------------------------------------------- /seahomes/assets/images/home/city-view.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/seahomes/assets/images/home/city-view.jpg -------------------------------------------------------------------------------- /seahomes/assets/images/home/designed-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/seahomes/assets/images/home/designed-1.jpg -------------------------------------------------------------------------------- /seahomes/assets/images/home/designed-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/seahomes/assets/images/home/designed-2.jpg -------------------------------------------------------------------------------- /seahomes/assets/images/home/designed-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/seahomes/assets/images/home/designed-3.jpg -------------------------------------------------------------------------------- /seahomes/assets/images/home/exterior.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/seahomes/assets/images/home/exterior.jpg -------------------------------------------------------------------------------- /seahomes/assets/images/home/footer-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/seahomes/assets/images/home/footer-1.jpg -------------------------------------------------------------------------------- /seahomes/assets/images/home/footer-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/seahomes/assets/images/home/footer-2.jpg -------------------------------------------------------------------------------- /seahomes/assets/images/home/interior.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/seahomes/assets/images/home/interior.jpg -------------------------------------------------------------------------------- /seahomes/assets/images/home/mid-banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/seahomes/assets/images/home/mid-banner.jpg -------------------------------------------------------------------------------- /seahomes/assets/images/home/sea1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/seahomes/assets/images/home/sea1.jpg -------------------------------------------------------------------------------- /seahomes/assets/images/home/sea2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/seahomes/assets/images/home/sea2.jpg -------------------------------------------------------------------------------- /seahomes/assets/images/home/sea3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/seahomes/assets/images/home/sea3.jpg -------------------------------------------------------------------------------- /seahomes/assets/images/home/sea4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/seahomes/assets/images/home/sea4.jpg -------------------------------------------------------------------------------- /seahomes/assets/images/home/sea5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/seahomes/assets/images/home/sea5.jpg -------------------------------------------------------------------------------- /seahomes/assets/images/home/sea6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/seahomes/assets/images/home/sea6.jpg -------------------------------------------------------------------------------- /seahomes/assets/images/home/slider-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/seahomes/assets/images/home/slider-1.jpg -------------------------------------------------------------------------------- /seahomes/assets/images/home/slider-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/seahomes/assets/images/home/slider-2.jpg -------------------------------------------------------------------------------- /seahomes/assets/images/home/slider-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/seahomes/assets/images/home/slider-3.jpg -------------------------------------------------------------------------------- /seahomes/assets/images/home/team-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/seahomes/assets/images/home/team-1.jpg -------------------------------------------------------------------------------- /seahomes/assets/images/home/team-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/seahomes/assets/images/home/team-2.jpg -------------------------------------------------------------------------------- /seahomes/assets/images/home/team-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/seahomes/assets/images/home/team-3.jpg -------------------------------------------------------------------------------- /seahomes/assets/images/home/team-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/seahomes/assets/images/home/team-4.jpg -------------------------------------------------------------------------------- /seahomes/assets/images/home/videobanner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/seahomes/assets/images/home/videobanner.jpg -------------------------------------------------------------------------------- /seahomes/assets/images/interiors/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/seahomes/assets/images/interiors/1.jpg -------------------------------------------------------------------------------- /seahomes/assets/images/interiors/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/seahomes/assets/images/interiors/2.jpg -------------------------------------------------------------------------------- /seahomes/assets/images/interiors/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/seahomes/assets/images/interiors/3.jpg -------------------------------------------------------------------------------- /seahomes/assets/images/logos/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/seahomes/assets/images/logos/favicon.png -------------------------------------------------------------------------------- /seahomes/assets/images/logos/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/seahomes/assets/images/logos/logo.png -------------------------------------------------------------------------------- /seahomes/assets/js/main.js: -------------------------------------------------------------------------------- 1 | 2 | $(function () { 3 | $(document).scroll(function () { 4 | var $nav = $(".navbar-scroller"); 5 | $nav.toggleClass('scrolled', $(this).scrollTop() > $nav.height()); 6 | }); 7 | }); 8 | 9 | // Go to Top 10 | 11 | // scroll to top 12 | 13 | //Get the button 14 | var mybutton = document.getElementById("topBtn"); 15 | 16 | // When the user scrolls down 20px from the top of the document, show the button 17 | window.onscroll = function () { 18 | scrollFunction(); 19 | }; 20 | 21 | function scrollFunction() { 22 | if ( 23 | document.body.scrollTop > 800 || 24 | document.documentElement.scrollTop > 800 25 | ) { 26 | mybutton.style.opacity = "1"; 27 | mybutton.style.display = "block"; 28 | } else { 29 | mybutton.style.opacity = "0"; 30 | mybutton.style.display = "none"; 31 | } 32 | } 33 | 34 | // When the user clicks on the button, scroll to the top of the document 35 | function topFunction() { 36 | document.body.scrollTop = 0; 37 | document.documentElement.scrollTop = 0; 38 | } 39 | 40 | Splitting(); 41 | AOS.init(); 42 | function navFunction(x) { 43 | x.classList.toggle("change"); 44 | } 45 | const btn = document.getElementById("btn"); 46 | const nav = document.getElementById("nav"); 47 | btn.addEventListener("click", () => { 48 | nav.classList.toggle("active"); 49 | btn.classList.toggle("active"); 50 | }); 51 | document.getElementById('playVid').onclick = function () { 52 | document.getElementById('vid').play(); 53 | }; 54 | function pauseVid() { 55 | document.getElementById('vid').pause(); 56 | } 57 | $('.owl-members').owlCarousel({ 58 | loop: true, 59 | margin: 20, 60 | nav: true, 61 | navText: [ 62 | '', 63 | '' 64 | ], 65 | dots: false, 66 | center: true, 67 | autoplay: true, 68 | items: 2 69 | }); 70 | $('.owl-slider').owlCarousel({ 71 | loop: true, 72 | margin: 20, 73 | nav: true, 74 | navText: [ 75 | '', 76 | '' 77 | ], 78 | dots: false, 79 | center: true, 80 | autoplay: false, 81 | items: 1 82 | }); 83 | const move = document.querySelector('.box'); 84 | const moveTwo = document.querySelector('.boxTwo'); 85 | window.addEventListener('scroll', () => { 86 | const scrolled = window.scrollY; 87 | const val = scrolled * 0.2; 88 | move.style.transform = `translateX(${-0.05 * val}%)`; 89 | moveTwo.style.transform = `translateX(${0.05 * val}%)`; 90 | }); 91 | var myVid = document.querySelector('.video-thumb'); 92 | window.addEventListener('scroll', () => { 93 | var scrolled = window.scrollY - myVid.clientHeight; 94 | var val = scrolled * 0.25; 95 | myVid.style.transform = `scale(${-0.09 * val}%)`; 96 | myVid.style.borderRadius = `${0.06 * val}%`; 97 | }); 98 | 99 | -------------------------------------------------------------------------------- /tiles100/assets/css/responsive.css: -------------------------------------------------------------------------------- 1 | @media screen and (max-width: 2500px) { 2 | } 3 | 4 | @media (min-width: 1800px) { 5 | .container { 6 | max-width: 1740px; 7 | } 8 | } 9 | 10 | @media screen and (max-width: 1500px) { 11 | } 12 | 13 | @media screen and (max-width: 1200px) { 14 | .home-banner-text { 15 | font-size: 8rem; 16 | line-height: 140px; 17 | } 18 | } 19 | 20 | @media screen and (max-width: 1024px) { 21 | .cursor { 22 | display: none; 23 | } 24 | } 25 | 26 | @media screen and (max-width: 991px) { 27 | .single-gallery-item { 28 | min-height: 300px; 29 | } 30 | .fs-10 { 31 | font-size: 4rem; 32 | } 33 | } 34 | 35 | @media screen and (max-width: 768px) { 36 | .w-8-overlay a[href="#"] { 37 | display: none; 38 | } 39 | } 40 | 41 | @media screen and (max-width: 576px) { 42 | .single-gallery-item { 43 | min-height: 200px; 44 | } 45 | .fs-10 { 46 | font-size: 3rem; 47 | } 48 | .w-8-overlay h4, .w-8-overlay a[href="#"] { 49 | display: none; 50 | } 51 | .w-8 { 52 | height: auto; 53 | } 54 | .empty { 55 | margin: 350px !important; 56 | } 57 | } 58 | 59 | @media screen and (max-width: 450px) { 60 | .text-biggy { 61 | font-size: 2rem; 62 | } 63 | .fs-10 { 64 | font-size: 2rem; 65 | } 66 | .empty { 67 | margin: 300px !important; 68 | } 69 | } 70 | 71 | @media screen and (max-width: 360px) { 72 | .empty { 73 | margin: 300px !important; 74 | } 75 | } 76 | -------------------------------------------------------------------------------- /tiles100/assets/images/flow-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/tiles100/assets/images/flow-1.jpg -------------------------------------------------------------------------------- /tiles100/assets/images/flow-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/tiles100/assets/images/flow-2.jpg -------------------------------------------------------------------------------- /tiles100/assets/images/flow-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/tiles100/assets/images/flow-3.jpg -------------------------------------------------------------------------------- /tiles100/assets/images/flow-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/tiles100/assets/images/flow-4.jpg -------------------------------------------------------------------------------- /tiles100/assets/images/flow-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/tiles100/assets/images/flow-5.jpg -------------------------------------------------------------------------------- /tiles100/assets/images/flow-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/tiles100/assets/images/flow-6.jpg -------------------------------------------------------------------------------- /tiles100/assets/images/flow-7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/tiles100/assets/images/flow-7.jpg -------------------------------------------------------------------------------- /tiles100/assets/images/flow-8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/tiles100/assets/images/flow-8.jpg -------------------------------------------------------------------------------- /tiles100/assets/images/handmade1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/tiles100/assets/images/handmade1.jpg -------------------------------------------------------------------------------- /tiles100/assets/images/handmade2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/tiles100/assets/images/handmade2.jpg -------------------------------------------------------------------------------- /tiles100/assets/images/handmade3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/tiles100/assets/images/handmade3.jpg -------------------------------------------------------------------------------- /tiles100/assets/images/icons/down-caret.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/tiles100/assets/images/icons/down-caret.png -------------------------------------------------------------------------------- /tiles100/assets/images/img2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/tiles100/assets/images/img2.jpg -------------------------------------------------------------------------------- /tiles100/assets/images/logos/logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/tiles100/assets/images/logos/logo.gif -------------------------------------------------------------------------------- /tiles100/assets/images/logos/logo.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /tiles100/assets/images/logos/logofavicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/tiles100/assets/images/logos/logofavicon.png -------------------------------------------------------------------------------- /tiles100/assets/images/newsletter.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/tiles100/assets/images/newsletter.jpg -------------------------------------------------------------------------------- /tiles100/assets/images/soul1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/tiles100/assets/images/soul1.jpg -------------------------------------------------------------------------------- /tiles100/assets/images/soul2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/tiles100/assets/images/soul2.jpg -------------------------------------------------------------------------------- /tiles100/assets/images/soul3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/tiles100/assets/images/soul3.jpg -------------------------------------------------------------------------------- /tiles100/assets/images/soul4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/tiles100/assets/images/soul4.jpg -------------------------------------------------------------------------------- /tiles100/assets/images/team/team-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/tiles100/assets/images/team/team-1.jpg -------------------------------------------------------------------------------- /tiles100/assets/images/team/team-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/tiles100/assets/images/team/team-2.jpg -------------------------------------------------------------------------------- /tiles100/assets/images/team/team-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/tiles100/assets/images/team/team-3.jpg -------------------------------------------------------------------------------- /tiles100/assets/images/team/team-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/tiles100/assets/images/team/team-4.jpg -------------------------------------------------------------------------------- /tiles100/assets/images/team/team-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/tiles100/assets/images/team/team-5.jpg -------------------------------------------------------------------------------- /tiles100/assets/images/team/team-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/tiles100/assets/images/team/team-6.jpg -------------------------------------------------------------------------------- /tiles100/assets/images/team/team-all.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/tiles100/assets/images/team/team-all.jpg -------------------------------------------------------------------------------- /tiles100/assets/images/tilebg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/tiles100/assets/images/tilebg.jpg -------------------------------------------------------------------------------- /tiles100/assets/images/video.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/tiles100/assets/images/video.mp4 -------------------------------------------------------------------------------- /tiles100/assets/js/main.js: -------------------------------------------------------------------------------- 1 | var mybutton = document.getElementById("topBtn"); 2 | window.onscroll = function () { 3 | scrollFunction(); 4 | }; 5 | function scrollFunction() { 6 | if ( 7 | document.body.scrollTop > 200 || 8 | document.documentElement.scrollTop > 200 9 | ) { 10 | mybutton.style.display = "block"; 11 | } else { 12 | mybutton.style.display = "none"; 13 | } 14 | } 15 | function topFunction() { 16 | document.body.scrollTop = 0; 17 | document.documentElement.scrollTop = 0; 18 | } 19 | function prealoader() { 20 | if ($('.preloader').length) { 21 | $('.preloader').fadeOut(500); 22 | } 23 | } 24 | jQuery(window).on('load', function () { 25 | (function ($) { 26 | prealoader(); 27 | })(jQuery); 28 | }); 29 | $(function () { 30 | $(document).scroll(function () { 31 | var $nav = $(".navbar-scroller"); 32 | $nav.toggleClass('scrolled', $(this).scrollTop() > $nav.height()); 33 | }); 34 | }); 35 | AOS.init(); 36 | const cursor = document.querySelector('.cursor'); 37 | document.addEventListener('mousemove', (e) => { 38 | cursor.style.left = e.clientX + 'px'; 39 | cursor.style.top = e.clientY + 'px'; 40 | }); 41 | $('.owl-footer').owlCarousel({ 42 | loop: true, 43 | margin: 10, 44 | nav: false, 45 | animateOut: 'animate__lightSpeedOutLeft', 46 | animateIn: 'animate__lightSpeedInRight', 47 | autoplay: true, 48 | dots: false, 49 | responsive: { 50 | 0: { 51 | items: 1 52 | }, 53 | 600: { 54 | items: 1 55 | }, 56 | 1000: { 57 | items: 1 58 | } 59 | } 60 | }); 61 | -------------------------------------------------------------------------------- /yoga_website/assets/css/main.css: -------------------------------------------------------------------------------- 1 | * { 2 | margin: 0; 3 | padding: 0; 4 | box-sizing: border-box; 5 | } -------------------------------------------------------------------------------- /yoga_website/assets/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universe1216/html-demo/68f0e4efdc2a49aac1c7bc0ed41ea53865f40224/yoga_website/assets/js/main.js -------------------------------------------------------------------------------- /yoga_website/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | Gym Website || Homepage - HTML DEMO Template 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | --------------------------------------------------------------------------------