├── .gitignore ├── css └── style.css ├── .DS_Store ├── web-ui.png ├── web-ui1.png ├── images ├── .DS_Store ├── products │ ├── .DS_Store │ ├── men │ │ ├── .DS_Store │ │ ├── product1.jpg │ │ ├── product2.jpg │ │ ├── product3.jpg │ │ └── product4.jpg │ └── women │ │ ├── .DS_Store │ │ ├── product1.jpg │ │ ├── product2.jpg │ │ ├── product3.jpg │ │ └── product4.jpg ├── subscribe-banner.png └── hero-img.svg ├── tailwind.config.js ├── package.json ├── README.md └── index.html /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | .vscode/ -------------------------------------------------------------------------------- /css/style.css: -------------------------------------------------------------------------------- 1 | @tailwind base; 2 | @tailwind components; 3 | @tailwind utilities; -------------------------------------------------------------------------------- /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/tailwind-eshop-static-html/HEAD/.DS_Store -------------------------------------------------------------------------------- /web-ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/tailwind-eshop-static-html/HEAD/web-ui.png -------------------------------------------------------------------------------- /web-ui1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/tailwind-eshop-static-html/HEAD/web-ui1.png -------------------------------------------------------------------------------- /images/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/tailwind-eshop-static-html/HEAD/images/.DS_Store -------------------------------------------------------------------------------- /images/products/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/tailwind-eshop-static-html/HEAD/images/products/.DS_Store -------------------------------------------------------------------------------- /images/subscribe-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/tailwind-eshop-static-html/HEAD/images/subscribe-banner.png -------------------------------------------------------------------------------- /images/products/men/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/tailwind-eshop-static-html/HEAD/images/products/men/.DS_Store -------------------------------------------------------------------------------- /images/products/men/product1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/tailwind-eshop-static-html/HEAD/images/products/men/product1.jpg -------------------------------------------------------------------------------- /images/products/men/product2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/tailwind-eshop-static-html/HEAD/images/products/men/product2.jpg -------------------------------------------------------------------------------- /images/products/men/product3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/tailwind-eshop-static-html/HEAD/images/products/men/product3.jpg -------------------------------------------------------------------------------- /images/products/men/product4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/tailwind-eshop-static-html/HEAD/images/products/men/product4.jpg -------------------------------------------------------------------------------- /images/products/women/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/tailwind-eshop-static-html/HEAD/images/products/women/.DS_Store -------------------------------------------------------------------------------- /images/products/women/product1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/tailwind-eshop-static-html/HEAD/images/products/women/product1.jpg -------------------------------------------------------------------------------- /images/products/women/product2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/tailwind-eshop-static-html/HEAD/images/products/women/product2.jpg -------------------------------------------------------------------------------- /images/products/women/product3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/tailwind-eshop-static-html/HEAD/images/products/women/product3.jpg -------------------------------------------------------------------------------- /images/products/women/product4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itzpradip/tailwind-eshop-static-html/HEAD/images/products/women/product4.jpg -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | purge: [], 3 | darkMode: false, // or 'media' or 'class' 4 | theme: { 5 | extend: {}, 6 | }, 7 | variants: { 8 | extend: {}, 9 | }, 10 | plugins: [], 11 | } 12 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "tailwind-eshop", 3 | "version": "1.0.0", 4 | "description": "", 5 | "main": "index.js", 6 | "scripts": { 7 | "test": "echo \"Error: no test specified\" && exit 1" 8 | }, 9 | "keywords": [], 10 | "author": "", 11 | "license": "ISC", 12 | "devDependencies": { 13 | "autoprefixer": "^10.2.6", 14 | "postcss": "^8.3.2", 15 | "tailwindcss": "^2.1.4" 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # eCommerce Website Design with Tailwind CSS 2 | 3 | This repository is a part of a tutorial on my [YouTube channel](https://www.youtube.com/channel/UC43N9Z8Fm0gg1Lgpw0eS9rg). 4 | 5 | It is created with Tailwind CSS and static HTML. 6 | 7 | ## Screenshots 8 |  9 |  10 | 11 | ## YouTube Tutorial 12 | 13 | [](https://youtu.be/iNDvh7O2WZM) 14 | -------------------------------------------------------------------------------- /images/hero-img.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 |Our brand tagline goes here.
35 |Our brand motto goes here.
36 | Shop Now 37 |
57 |
58 |
94 |
95 |
131 |
132 |
168 |
169 |
219 |
220 |
256 |
257 |
293 |
294 |
330 |
331 | Want to hear from us when we have new offers? Sign up for our newsletter and we'll email you every time we have new sale offers.
371 |© Copyright Reserved 2021
389 |