├── Aptech_Project └── SampleWebsite │ ├── Navbar │ ├── Code │ └── navbar.html │ └── navbar.html ├── LICENSE ├── README.md ├── Shapes ├── Circle Shape │ └── circle.html ├── Hexagon Shape │ └── Hexagon Shape.html ├── Oval Shape │ └── oval.html ├── Parallelogram Shape │ └── parallelogram.html ├── ReadMe ├── Rectangle Shape │ └── rectangle.html ├── Square Shape │ └── square.html ├── Trapezoid Shape │ └── Trapezoid Shape.html └── Triangle │ ├── Triangle Left Shape.html │ ├── Triangle Right Shape.html │ ├── traingle_Up.html │ └── traingle_down.html └── The Different Shapes of CSS /Aptech_Project/SampleWebsite/Navbar/Code: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Aptech_Project/SampleWebsite/Navbar/navbar.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Document 8 | 33 | 34 | 35 | 44 | 45 | -------------------------------------------------------------------------------- /Aptech_Project/SampleWebsite/navbar.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Document 8 | 33 | 34 | 35 | 44 | 45 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2022 Kousar Raza 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # HTML5-CSS3 2 | This repository will be updated on daily basis based on the HTML & CSS course content. 3 | 4 | # 5 | As repository me daily base pe HTML and CSS ke related content upload kia jaie ga. 6 | -------------------------------------------------------------------------------- /Shapes/Circle Shape/circle.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Document 8 | 16 | 17 | 18 |
19 | 20 |
21 | 22 | -------------------------------------------------------------------------------- /Shapes/Hexagon Shape/Hexagon Shape.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Document 8 | 39 | 40 | 41 |
42 | 43 | -------------------------------------------------------------------------------- /Shapes/Oval Shape/oval.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Document 8 | 16 | 17 | 18 |
19 | 20 |
21 | 22 | -------------------------------------------------------------------------------- /Shapes/Parallelogram Shape/parallelogram.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Document 8 | 17 | 18 | 19 |
20 | 21 | -------------------------------------------------------------------------------- /Shapes/ReadMe: -------------------------------------------------------------------------------- 1 | CSS is capable of making all sorts of shapes, just need to add width, height, and border-radius and you can round those shapes into circles, ovals, and many more. 2 | 3 | CSS use kr ke hum koi be shapes design kar sakty han, us ke le humain width, height, and border-radius property use Karne hongy us ke bhad hum easily in shapes ko circle oval or kise ur shape me convert krsakty han. 4 | -------------------------------------------------------------------------------- /Shapes/Rectangle Shape/rectangle.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Document 8 | 15 | 16 | 17 |
18 | 19 |
20 | 21 | -------------------------------------------------------------------------------- /Shapes/Square Shape/square.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Document 8 | 15 | 16 | 17 |
18 | 19 |
20 | 21 | -------------------------------------------------------------------------------- /Shapes/Trapezoid Shape/Trapezoid Shape.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 14 | 15 | 16 | 17 |

Trapezoid Shape in CSS

18 |
19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /Shapes/Triangle/Triangle Left Shape.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 14 | 15 | 16 | 17 |

Triangle Left Shape in CSS

18 |
19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /Shapes/Triangle/Triangle Right Shape.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 14 | 15 | 16 | 17 |

Triangle Right Shape in CSS

18 |
19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /Shapes/Triangle/traingle_Up.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Document 8 | 18 | 19 | 20 |
21 | 22 | -------------------------------------------------------------------------------- /Shapes/Triangle/traingle_down.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Document 8 | 18 | 19 | 20 |
21 | 22 | -------------------------------------------------------------------------------- /The Different Shapes of CSS: -------------------------------------------------------------------------------- 1 | 2 | --------------------------------------------------------------------------------