├── script.js ├── photos ├── last.png ├── image1.jpg ├── image2.jpg ├── image3.jpg ├── image4.webp ├── image5.webp ├── image6.jpg ├── image7.jpg ├── media 2.png ├── photo 1.PNG ├── photo 1.jpg ├── photo 2.png ├── photo 3.png ├── photo 4.png ├── photo 5.png ├── photo 6.png ├── photo 7.png ├── photo 8.png ├── photo9.png ├── social.png ├── face book.webp ├── StarbucksLogo.png ├── location_low.png └── fb.svg ├── style.css └── index.html /script.js: -------------------------------------------------------------------------------- 1 | function BtnClick(){ 2 | window.alert("Please do Sign-In") 3 | } 4 | -------------------------------------------------------------------------------- /photos/last.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AjmalDevala/starbucks-static-/HEAD/photos/last.png -------------------------------------------------------------------------------- /photos/image1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AjmalDevala/starbucks-static-/HEAD/photos/image1.jpg -------------------------------------------------------------------------------- /photos/image2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AjmalDevala/starbucks-static-/HEAD/photos/image2.jpg -------------------------------------------------------------------------------- /photos/image3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AjmalDevala/starbucks-static-/HEAD/photos/image3.jpg -------------------------------------------------------------------------------- /photos/image4.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AjmalDevala/starbucks-static-/HEAD/photos/image4.webp -------------------------------------------------------------------------------- /photos/image5.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AjmalDevala/starbucks-static-/HEAD/photos/image5.webp -------------------------------------------------------------------------------- /photos/image6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AjmalDevala/starbucks-static-/HEAD/photos/image6.jpg -------------------------------------------------------------------------------- /photos/image7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AjmalDevala/starbucks-static-/HEAD/photos/image7.jpg -------------------------------------------------------------------------------- /photos/media 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AjmalDevala/starbucks-static-/HEAD/photos/media 2.png -------------------------------------------------------------------------------- /photos/photo 1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AjmalDevala/starbucks-static-/HEAD/photos/photo 1.PNG -------------------------------------------------------------------------------- /photos/photo 1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AjmalDevala/starbucks-static-/HEAD/photos/photo 1.jpg -------------------------------------------------------------------------------- /photos/photo 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AjmalDevala/starbucks-static-/HEAD/photos/photo 2.png -------------------------------------------------------------------------------- /photos/photo 3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AjmalDevala/starbucks-static-/HEAD/photos/photo 3.png -------------------------------------------------------------------------------- /photos/photo 4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AjmalDevala/starbucks-static-/HEAD/photos/photo 4.png -------------------------------------------------------------------------------- /photos/photo 5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AjmalDevala/starbucks-static-/HEAD/photos/photo 5.png -------------------------------------------------------------------------------- /photos/photo 6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AjmalDevala/starbucks-static-/HEAD/photos/photo 6.png -------------------------------------------------------------------------------- /photos/photo 7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AjmalDevala/starbucks-static-/HEAD/photos/photo 7.png -------------------------------------------------------------------------------- /photos/photo 8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AjmalDevala/starbucks-static-/HEAD/photos/photo 8.png -------------------------------------------------------------------------------- /photos/photo9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AjmalDevala/starbucks-static-/HEAD/photos/photo9.png -------------------------------------------------------------------------------- /photos/social.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AjmalDevala/starbucks-static-/HEAD/photos/social.png -------------------------------------------------------------------------------- /photos/face book.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AjmalDevala/starbucks-static-/HEAD/photos/face book.webp -------------------------------------------------------------------------------- /photos/StarbucksLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AjmalDevala/starbucks-static-/HEAD/photos/StarbucksLogo.png -------------------------------------------------------------------------------- /photos/location_low.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AjmalDevala/starbucks-static-/HEAD/photos/location_low.png -------------------------------------------------------------------------------- /photos/fb.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- 1 | * { 2 | padding: 0; 3 | margin: 0; 4 | box-sizing: border-box; 5 | line-height: 1.5; 6 | font-family: SoDoSans, Helvetica Neue, Helvetica, Arial, sans-serif; 7 | } 8 | 9 | .nav-w { 10 | text-decoration: none; 11 | color: black; 12 | } 13 | 14 | .nav-w:hover { 15 | color: #006241; 16 | } 17 | 18 | .bg1 { 19 | background-color: #d4e9e2; 20 | } 21 | 22 | .bg2 { 23 | background-color: #1e3932; 24 | } 25 | 26 | h1 { 27 | font-size: 55px; 28 | } 29 | 30 | h2 { 31 | font-size: 25px; 32 | } 33 | 34 | .article1 { 35 | max-width: 70%; 36 | } 37 | 38 | .para { 39 | font-size: 23px; 40 | } 41 | 42 | .para2 { 43 | font-size: 18px; 44 | } 45 | 46 | .footer-article { 47 | margin-left: 30%; 48 | margin-right: 30%; 49 | margin-top: 5%; 50 | font-size: 13px; 51 | font-weight: bold; 52 | } 53 | 54 | .footer-link { 55 | color: #000000; 56 | } 57 | 58 | .footer-link:hover { 59 | text-decoration: none; 60 | color: #000000; 61 | } 62 | 63 | @media only screen and (max-width:1022px) { 64 | h1 { 65 | font-size: 30px; 66 | } 67 | 68 | .article1 { 69 | max-width: 89%; 70 | } 71 | 72 | para { 73 | font-size: 18px; 74 | } 75 | } 76 | 77 | @media only screen and (max-width:380px) { 78 | h1 { 79 | font-size: 26px; 80 | } 81 | 82 | .article1 { 83 | max-width: 99%; 84 | } 85 | 86 | para { 87 | font-size: 12px; 88 | } 89 | } 90 | 91 | @media only screen and (max-width:800px) { 92 | .footer-article { 93 | margin-left: 12%; 94 | margin-right: 12%; 95 | } 96 | } 97 | 98 | @media only screen and (max-width:600px) { 99 | .footer-article { 100 | margin-left: 5%; 101 | margin-right: 5%; 102 | } 103 | } 104 | 105 | .foot-setting li { 106 | list-style: none; 107 | } 108 | 109 | .foot-setting ul { 110 | padding: 0; 111 | line-height: 2.795em; 112 | } 113 | 114 | footer li { 115 | color: rgba(0, 0, 0, 0.58); 116 | } 117 | 118 | footer li:hover { 119 | cursor: pointer; 120 | color: black; 121 | } 122 | 123 | footer li { 124 | list-style: none; 125 | line-height: 2.795em; 126 | } 127 | 128 | @media only screen and (max-width:600px) { 129 | .social-icons { 130 | margin-left: 20px; 131 | } 132 | } 133 | 134 | @media only screen and (min-width:1150px) { 135 | .footer-table { 136 | margin-left: 5%; 137 | margin-right: 5%; 138 | } 139 | } 140 | 141 | @media only screen and (max-width:1150px) { 142 | .footer-table { 143 | margin-left: 2%; 144 | margin-right: 2%; 145 | } 146 | } 147 | 148 | @media only screen and (min-width:1150px) { 149 | .footer-bottom { 150 | margin-left: 5%; 151 | } 152 | } 153 | 154 | @media only screen and (max-width:1150px) { 155 | .footer-bottom { 156 | margin-left: 2%; 157 | } 158 | } 159 | 160 | @media all and (min-width: 768px) { 161 | .width-btw { 162 | border-right: 2px solid rgba(0, 0, 0, 0.38); 163 | margin-right: 10px; 164 | } 165 | } 166 | 167 | .sc-icons-cursor{ 168 | cursor: pointer; 169 | } 170 | 171 | .footer-hvr { 172 | font-size: 15px; 173 | } 174 | 175 | .footer-hvr:hover { 176 | cursor: pointer; 177 | text-decoration: underline; 178 | } 179 | 180 | .final-text { 181 | font-size: .850em; 182 | color: rgba(0, 0, 0, .58); 183 | } 184 | .footer__support-title { 185 | text-align: center; /* Center the title */ 186 | margin-bottom: 20px; /* Add space below the title */ 187 | } 188 | 189 | .footer__support-buttons { 190 | display: flex; 191 | justify-content: center; /* Center the images horizontally */ 192 | gap: 20px; /* Add space between the buttons */ 193 | margin-top: 20px; /* Add space above the buttons */ 194 | } 195 | 196 | .footer__support-buttons img { 197 | transition: transform 0.3s ease, box-shadow 0.3s ease; 198 | } 199 | 200 | .footer__support-buttons img:hover { 201 | transform: scale(1.05); /* Hover effect */ 202 | box-shadow: 0 0 15px rgba(0, 0, 0, 0.2); 203 | } 204 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |
5 |
61 |
78 |
94 |
111 | Earn more Stars and even more Rewards with a $0 intro annual fee 116 | for your first year with the Starbucks® Rewards Visa® Card. Plus your Stars won’t expire – an 117 | exclusive Starbucks benefit for cardmembers. Now that’s Super Starifying.
118 | 119 |
129 | Check out the latest news and stories about how we are supporting and investing in the 134 | future of our partners (employees).
135 | 136 |
146 | Our Pan-Asian and India Partner Networks are coming together to celebrate Asian 151 | American, Native Hawaiian and Pacific Islander Heritage Month.
152 | 153 |
163 | For each Military eGift sold in May, we’ll donate $5 to support the mental health and 168 | well-being of our military community.**
169 | 171 |*At participating stores.
181 | 186 |Enjoying our coffee? Buy us a coffee to keep the caffeine flowing!
411 | Buy Me A Coffee 412 |