├── Boostrap └── Boostrap E-commerce Page Example │ ├── css │ └── style.css │ ├── image │ ├── Geometrical-Salt-Lamps.jpg │ ├── Himalayan-Salt-Lamp-Bowl.jpg │ ├── Lamp-Banner.jpg │ ├── Medium-Globe-Himalayan-Salt-Lamp.jpg │ ├── Pyramid_Salt_Lamp_1024x1024.jpg │ ├── arrey_1.jpg │ ├── cubed-salt-lamp.jpg │ └── leaf_salt_lamp.jpg │ └── index.html ├── PHP └── login │ ├── db.php │ ├── functions.php │ ├── index.php │ ├── login.php │ ├── logout.php │ └── md5.php ├── custometheme ├── footer.php ├── functions.php ├── header.php ├── index.php ├── sidebar.php └── style.css ├── design ├── css │ └── style.css ├── images │ ├── Himalayan-Salt-Lamp-Bowl.jpg │ ├── Medium-Globe-Himalayan-Salt-Lamp.jpg │ ├── Pyramid_Salt_Lamp_1024x1024.jpg │ ├── arrey_1.jpg │ ├── cubed-salt-lamp.jpg │ ├── leaf_salt_lamp.jpg │ └── slider.jpg └── index.htm ├── forms.html ├── google.jpg ├── html-basic-2.html ├── html-theme ├── index.html └── style.css ├── image.jpg ├── mult-dim-array.php └── table.html /Boostrap/Boostrap E-commerce Page Example/css/style.css: -------------------------------------------------------------------------------- 1 | .container-fluid { 2 | margin-right: auto; 3 | margin-left: auto; 4 | padding:0; 5 | } 6 | .slider-image{ 7 | width:100%; 8 | height:100%; 9 | } 10 | .product-grid{ 11 | text-align:center; 12 | margin-top:15px; 13 | margin-bottom:15px; 14 | 15 | } 16 | .product{ 17 | width:100%; 18 | height:60%; 19 | } -------------------------------------------------------------------------------- /Boostrap/Boostrap E-commerce Page Example/image/Geometrical-Salt-Lamps.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpdocs/Web-Samples/faee5fd24eac99fbe74abfc406ac6a629927c5fd/Boostrap/Boostrap E-commerce Page Example/image/Geometrical-Salt-Lamps.jpg -------------------------------------------------------------------------------- /Boostrap/Boostrap E-commerce Page Example/image/Himalayan-Salt-Lamp-Bowl.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpdocs/Web-Samples/faee5fd24eac99fbe74abfc406ac6a629927c5fd/Boostrap/Boostrap E-commerce Page Example/image/Himalayan-Salt-Lamp-Bowl.jpg -------------------------------------------------------------------------------- /Boostrap/Boostrap E-commerce Page Example/image/Lamp-Banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpdocs/Web-Samples/faee5fd24eac99fbe74abfc406ac6a629927c5fd/Boostrap/Boostrap E-commerce Page Example/image/Lamp-Banner.jpg -------------------------------------------------------------------------------- /Boostrap/Boostrap E-commerce Page Example/image/Medium-Globe-Himalayan-Salt-Lamp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpdocs/Web-Samples/faee5fd24eac99fbe74abfc406ac6a629927c5fd/Boostrap/Boostrap E-commerce Page Example/image/Medium-Globe-Himalayan-Salt-Lamp.jpg -------------------------------------------------------------------------------- /Boostrap/Boostrap E-commerce Page Example/image/Pyramid_Salt_Lamp_1024x1024.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpdocs/Web-Samples/faee5fd24eac99fbe74abfc406ac6a629927c5fd/Boostrap/Boostrap E-commerce Page Example/image/Pyramid_Salt_Lamp_1024x1024.jpg -------------------------------------------------------------------------------- /Boostrap/Boostrap E-commerce Page Example/image/arrey_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpdocs/Web-Samples/faee5fd24eac99fbe74abfc406ac6a629927c5fd/Boostrap/Boostrap E-commerce Page Example/image/arrey_1.jpg -------------------------------------------------------------------------------- /Boostrap/Boostrap E-commerce Page Example/image/cubed-salt-lamp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpdocs/Web-Samples/faee5fd24eac99fbe74abfc406ac6a629927c5fd/Boostrap/Boostrap E-commerce Page Example/image/cubed-salt-lamp.jpg -------------------------------------------------------------------------------- /Boostrap/Boostrap E-commerce Page Example/image/leaf_salt_lamp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpdocs/Web-Samples/faee5fd24eac99fbe74abfc406ac6a629927c5fd/Boostrap/Boostrap E-commerce Page Example/image/leaf_salt_lamp.jpg -------------------------------------------------------------------------------- /Boostrap/Boostrap E-commerce Page Example/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 |