├── .gitattributes ├── assets ├── img │ ├── cake1.jpg │ ├── cake2.jpg │ ├── cake3.jpg │ ├── cake4.jpg │ ├── image2.jpg │ ├── resize.jpg │ ├── choclate.jpg │ └── ice-logo.avif ├── fonts │ ├── FontAwesome.otf │ ├── fa-solid-900.eot │ ├── fa-solid-900.ttf │ ├── fa-brands-400.eot │ ├── fa-brands-400.ttf │ ├── fa-brands-400.woff │ ├── fa-brands-400.woff2 │ ├── fa-regular-400.eot │ ├── fa-regular-400.ttf │ ├── fa-regular-400.woff │ ├── fa-solid-900.woff │ ├── fa-solid-900.woff2 │ ├── fa-regular-400.woff2 │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ ├── fontawesome-webfont.woff2 │ ├── fontawesome5-overrides.min.css │ ├── font-awesome.min.css │ └── fontawesome-all.min.css ├── css │ ├── styles.css │ └── Pretty-Footer-.css └── bootstrap │ └── js │ └── bootstrap.min.js └── index.html /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | -------------------------------------------------------------------------------- /assets/img/cake1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parveen-14/cake-website/HEAD/assets/img/cake1.jpg -------------------------------------------------------------------------------- /assets/img/cake2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parveen-14/cake-website/HEAD/assets/img/cake2.jpg -------------------------------------------------------------------------------- /assets/img/cake3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parveen-14/cake-website/HEAD/assets/img/cake3.jpg -------------------------------------------------------------------------------- /assets/img/cake4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parveen-14/cake-website/HEAD/assets/img/cake4.jpg -------------------------------------------------------------------------------- /assets/img/image2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parveen-14/cake-website/HEAD/assets/img/image2.jpg -------------------------------------------------------------------------------- /assets/img/resize.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parveen-14/cake-website/HEAD/assets/img/resize.jpg -------------------------------------------------------------------------------- /assets/img/choclate.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parveen-14/cake-website/HEAD/assets/img/choclate.jpg -------------------------------------------------------------------------------- /assets/img/ice-logo.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parveen-14/cake-website/HEAD/assets/img/ice-logo.avif -------------------------------------------------------------------------------- /assets/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parveen-14/cake-website/HEAD/assets/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /assets/fonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parveen-14/cake-website/HEAD/assets/fonts/fa-solid-900.eot -------------------------------------------------------------------------------- /assets/fonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parveen-14/cake-website/HEAD/assets/fonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /assets/fonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parveen-14/cake-website/HEAD/assets/fonts/fa-brands-400.eot -------------------------------------------------------------------------------- /assets/fonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parveen-14/cake-website/HEAD/assets/fonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /assets/fonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parveen-14/cake-website/HEAD/assets/fonts/fa-brands-400.woff -------------------------------------------------------------------------------- /assets/fonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parveen-14/cake-website/HEAD/assets/fonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /assets/fonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parveen-14/cake-website/HEAD/assets/fonts/fa-regular-400.eot -------------------------------------------------------------------------------- /assets/fonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parveen-14/cake-website/HEAD/assets/fonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /assets/fonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parveen-14/cake-website/HEAD/assets/fonts/fa-regular-400.woff -------------------------------------------------------------------------------- /assets/fonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parveen-14/cake-website/HEAD/assets/fonts/fa-solid-900.woff -------------------------------------------------------------------------------- /assets/fonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parveen-14/cake-website/HEAD/assets/fonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /assets/fonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parveen-14/cake-website/HEAD/assets/fonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /assets/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parveen-14/cake-website/HEAD/assets/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /assets/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parveen-14/cake-website/HEAD/assets/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /assets/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parveen-14/cake-website/HEAD/assets/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /assets/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parveen-14/cake-website/HEAD/assets/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /assets/fonts/fontawesome5-overrides.min.css: -------------------------------------------------------------------------------- 1 | .fab.fa-bitcoin:before{content:"\f379"}.far.fa-calendar:before,.fas.fa-calendar:before{content:"\f133"}.far.fa-clipboard:before,.fas.fa-clipboard:before{content:"\f328"}.fab.fa-facebook-f:before{content:"\f39e"}.fab.fa-google-plus:before{content:"\f2b3"}.fas.fa-hotel:before{content:"\f594"}.fab.fa-linkedin:before{content:"\f08c"}.fas.fa-reply:before{content:"\f3e5"}.fas.fa-thermometer:before{content:"\f491"}.fab.fa-vimeo:before{content:"\f40a"}.far.fa-window-close:before,.fas.fa-window-close:before{content:"\f410"}.fab.fa-youtube-square:before{content:"\f431"} -------------------------------------------------------------------------------- /assets/css/styles.css: -------------------------------------------------------------------------------- 1 | #promo { 2 | text-align: center; 3 | padding: 40px; 4 | background: url(cake2.jpg); 5 | background-repeat: no-repeat; 6 | background-size: cover; 7 | } 8 | 9 | .site-section { 10 | text-align: center; 11 | padding: 50px 60px 0; 12 | } 13 | 14 | .site-section h1 { 15 | font-weight: normal; 16 | margin-bottom: 30px; 17 | margin-top: 50px; 18 | } 19 | 20 | #welcome p { 21 | max-width: 800px; 22 | font-size: 20px; 23 | margin: 0 auto; 24 | } 25 | 26 | #why .item i { 27 | font-size: 42px; 28 | } 29 | 30 | #why .item i { 31 | font-weight: normal; 32 | } 33 | 34 | .dark-section { 35 | background-color: rgba(232,248,253,0.56); 36 | } 37 | 38 | .dark-section { 39 | } 40 | 41 | .test-section h1 { 42 | font-weight: normal; 43 | margin-bottom: 30px; 44 | } 45 | 46 | .test-section { 47 | text-align: center; 48 | padding-bottom: 70px; 49 | } 50 | 51 | #welcome p { 52 | max-width: 800px; 53 | font-size: 20px; 54 | margin: 0 auto; 55 | } 56 | 57 | .navbar { 58 | color: var(--bs-navbar-active-color); 59 | font-weight: normal; 60 | } 61 | 62 | #logo { 63 | max-height: 42px; 64 | margin-right: 10px; 65 | margin-top: -3px; 66 | display: inline-block; 67 | } 68 | 69 | .fas.fa-birthday-cake { 70 | color: #ff45c7; 71 | } 72 | 73 | .fas.fa-heart { 74 | color: #ff45c7; 75 | } 76 | 77 | .nav-item { 78 | background-color: #ffed38; 79 | border: var(--bs-border-color-translucent); 80 | } 81 | 82 | #cake { 83 | margin-right: 7px; 84 | } 85 | 86 | #Pricing { 87 | margin-right: 7px; 88 | } 89 | 90 | #Orders { 91 | margin-right: 7px; 92 | } 93 | 94 | #logo { 95 | background-image: url("../../assets/img/ice-logo.avif"); 96 | } 97 | 98 | .btn { 99 | background-color: #4d79e9; 100 | } 101 | 102 | .text-black { 103 | } 104 | 105 | -------------------------------------------------------------------------------- /assets/css/Pretty-Footer-.css: -------------------------------------------------------------------------------- 1 | footer { 2 | background-color: #292c2f; 3 | box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.12); 4 | box-sizing: border-box; 5 | width: 100%; 6 | text-align: left; 7 | font: bold 16px sans-serif; 8 | padding: 55px 50px; 9 | margin-top: 80px; 10 | bottom: 0; 11 | color: #fff; 12 | } 13 | 14 | .footer-navigation h3 { 15 | margin: 0; 16 | font: normal 36px Cookie, cursive; 17 | margin-bottom: 20px; 18 | color: #fff; 19 | } 20 | 21 | .footer-navigation h3 a { 22 | text-decoration: none; 23 | color: var(--bs-gray-500); 24 | } 25 | 26 | .footer-navigation h3 span { 27 | color: #5383d3; 28 | } 29 | 30 | .footer-navigation p.links a { 31 | color: #fff; 32 | text-decoration: none; 33 | } 34 | 35 | .footer-navigation p.company-name { 36 | color: #8f9296; 37 | font-size: 14px; 38 | font-weight: normal; 39 | margin-top: 20px; 40 | } 41 | 42 | @media (max-width:767px) { 43 | .footer-contacts { 44 | margin: 30px 0; 45 | } 46 | } 47 | 48 | .footer-contacts p { 49 | display: inline-block; 50 | color: #ffffff; 51 | vertical-align: middle; 52 | } 53 | 54 | .footer-contacts p a { 55 | color: #5383d3; 56 | text-decoration: none; 57 | } 58 | 59 | .fa.footer-contacts-icon { 60 | background-color: #33383b; 61 | color: #fff; 62 | font-size: 18px; 63 | width: 38px; 64 | height: 38px; 65 | border-radius: 50%; 66 | text-align: center; 67 | line-height: 38px; 68 | margin: 10px 15px 10px 0; 69 | } 70 | 71 | span.new-line-span { 72 | display: block; 73 | font-weight: normal; 74 | display: block; 75 | font-weight: normal; 76 | font-size: 14px; 77 | line-height: 2; 78 | } 79 | 80 | .footer-about h4 { 81 | display: block; 82 | color: #fff; 83 | font-size: 14px; 84 | font-weight: bold; 85 | margin-bottom: 20px; 86 | } 87 | 88 | .footer-about p { 89 | line-height: 20px; 90 | color: #92999f; 91 | font-size: 13px; 92 | font-weight: normal; 93 | margin: 0; 94 | } 95 | 96 | div.social-links { 97 | margin-top: 20px; 98 | color: #fff; 99 | } 100 | 101 | .social-links a { 102 | display: inline-block; 103 | width: 35px; 104 | height: 35px; 105 | cursor: pointer; 106 | background-color: #33383b; 107 | border-radius: 2px; 108 | font-size: 20px; 109 | color: #ffffff; 110 | text-align: center; 111 | line-height: 35px; 112 | margin-right: 5px; 113 | margin-bottom: 5px; 114 | } 115 | 116 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |
5 | 6 | 7 |We have a special to treat our new customers. Order now and get a big discount on your first cake!
40 | 41 |Mom and Pops Bakery was founded in Paris in 1993 with the mission of giving great cake to the world . All of our products are made fresh daily.
Lorem ipsum doior sit amet, concestetur adipiscing elit.
56 |Lorem ipsum doior sit amet, concestetur adipiscing elit.
60 |Lorem ipsum doior sit amet, concestetur adipiscing elit.
64 |