├── .gitignore ├── CSS Notes.pdf ├── Course Code ├── css │ ├── level 1 │ │ └── external styling.css │ ├── level 5 │ │ ├── display_block.css │ │ ├── display_inline.css │ │ ├── display_inline_block.css │ │ ├── display_none.css │ │ ├── positions.css │ │ ├── unit_em.css │ │ ├── unit_percentage.css │ │ ├── unit_rem.css │ │ └── z-index.css │ └── level 6 │ │ ├── flex_wrap.css │ │ ├── flexbox_align_content.css │ │ ├── flexbox_align_items.css │ │ ├── flexbox_align_self.css │ │ ├── flexbox_direction.css │ │ ├── flexbox_flex_shrink.css │ │ ├── flexbox_items_order.css │ │ ├── flexbox_justify_content.css │ │ ├── float.css │ │ └── grid.css ├── html │ ├── level 1 │ │ ├── class selector.html │ │ ├── color.html │ │ ├── descendant selector.html │ │ ├── element selector.html │ │ ├── external styling.html │ │ ├── group selector.html │ │ ├── id class.html │ │ ├── id selector.html │ │ ├── inline styling.html │ │ ├── internal styling.html │ │ └── universal selector.html │ ├── level 2 │ │ ├── alpha.html │ │ ├── background color.html │ │ ├── background-image.html │ │ ├── height_width.html │ │ ├── hex.html │ │ ├── rgb.html │ │ └── visibility.html │ ├── level 3 │ │ ├── font_family.html │ │ ├── font_size.html │ │ ├── font_style.html │ │ ├── font_weight.html │ │ ├── icons.html │ │ ├── line_height.html │ │ ├── text_align.html │ │ ├── text_decoration.html │ │ ├── text_decoration_color.html │ │ ├── text_decoration_style.html │ │ └── text_transform.html │ ├── level 4 │ │ ├── border.html │ │ ├── border_radius.html │ │ ├── box_sizing.html │ │ ├── margin.html │ │ └── padding.html │ ├── level 5 │ │ ├── display_block.html │ │ ├── display_inline.html │ │ ├── display_inline_block.html │ │ ├── display_none.html │ │ ├── position.html │ │ ├── unit_em.html │ │ ├── unit_percentage.html │ │ ├── unit_rem.html │ │ ├── unit_vh_vw.html │ │ └── z-index.html │ ├── level 6 │ │ ├── flex_wrap.html │ │ ├── flexbox_align_content.html │ │ ├── flexbox_align_items.html │ │ ├── flexbox_align_self.html │ │ ├── flexbox_direction.html │ │ ├── flexbox_flex_shrink.html │ │ ├── flexbox_items_order.html │ │ ├── flexbox_justify_content.html │ │ ├── float.html │ │ ├── grid.html │ │ ├── media_query_combination.html │ │ ├── media_query_max_width.html │ │ ├── media_query_min_width.html │ │ └── media_query_width.html │ └── level 7 │ │ ├── animation.html │ │ ├── animation_percentage.html │ │ ├── pseudo_classes.html │ │ ├── transform_rotate.html │ │ ├── transform_scale.html │ │ ├── transform_skew.html │ │ ├── transform_translate.html │ │ └── transition.html ├── images │ └── css.png └── index.html ├── Practise Sets ├── .DS_Store ├── Set 1 │ ├── index.css │ └── index.html ├── Set 2 │ ├── index.html │ └── jeans.webp ├── Set 3 │ ├── index.css │ └── index.html ├── Set 4 │ └── index.html ├── Set 5 │ ├── index.css │ └── index.html ├── Set 6 │ ├── bharat.jpeg │ ├── index.css │ └── index.html └── Set 7 │ └── index.html ├── Project Myntra Clone ├── images │ ├── banner.jpg │ ├── categories │ │ ├── 1.jpg │ │ ├── 10.jpg │ │ ├── 2.jpg │ │ ├── 3.jpg │ │ ├── 4.jpg │ │ ├── 5.jpg │ │ ├── 6.jpg │ │ ├── 7.jpg │ │ ├── 8.jpg │ │ └── 9.jpg │ ├── myntra_logo.webp │ └── offers │ │ ├── 1.png │ │ ├── 10.png │ │ ├── 11.png │ │ ├── 12.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ ├── 5.png │ │ ├── 6.png │ │ ├── 7.png │ │ ├── 8.png │ │ └── 9.png ├── index.css └── index.html └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /CSS Notes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Complete-Coding/CSS_Complete_YouTube/9187773420f2fd9c246d1734393310489d7883d9/CSS Notes.pdf -------------------------------------------------------------------------------- /Course Code/css/level 1/external styling.css: -------------------------------------------------------------------------------- 1 | h1 { 2 | color: red; 3 | } 4 | 5 | p { 6 | color: green; 7 | } -------------------------------------------------------------------------------- /Course Code/css/level 5/display_block.css: -------------------------------------------------------------------------------- 1 | .box { 2 | height: 100px; 3 | width: 100px; 4 | background-color: blueviolet; 5 | margin: 10px; 6 | text-align: center; 7 | border: 5px solid black; 8 | border-radius: 10px; 9 | 10 | display: block; 11 | } -------------------------------------------------------------------------------- /Course Code/css/level 5/display_inline.css: -------------------------------------------------------------------------------- 1 | .box { 2 | height: 100px; 3 | width: 100px; 4 | background-color: blueviolet; 5 | margin: 10px; 6 | text-align: center; 7 | border: 5px solid black; 8 | border-radius: 10px; 9 | 10 | display: inline; 11 | } -------------------------------------------------------------------------------- /Course Code/css/level 5/display_inline_block.css: -------------------------------------------------------------------------------- 1 | .box { 2 | height: 100px; 3 | width: 100px; 4 | background-color: blueviolet; 5 | margin: 10px; 6 | text-align: center; 7 | border: 5px solid black; 8 | border-radius: 10px; 9 | 10 | display: inline-block; 11 | } -------------------------------------------------------------------------------- /Course Code/css/level 5/display_none.css: -------------------------------------------------------------------------------- 1 | .box { 2 | height: 100px; 3 | width: 100px; 4 | background-color: blueviolet; 5 | margin: 10px; 6 | text-align: center; 7 | border: 5px solid black; 8 | border-radius: 10px; 9 | } 10 | 11 | #div2 { 12 | display: none; 13 | } -------------------------------------------------------------------------------- /Course Code/css/level 5/positions.css: -------------------------------------------------------------------------------- 1 | div { 2 | height: 70px; 3 | width: 70px; 4 | background-color: red; 5 | border: 5px solid black; 6 | margin: 100px; 7 | } 8 | #div1 { 9 | position: static; 10 | } 11 | #div2 { 12 | position: relative; 13 | top: 20px; 14 | left: 90px; 15 | } 16 | #div3 { 17 | position: fixed; 18 | top: 20px; 19 | left: 90px; 20 | } 21 | #div4 { 22 | position: absolute; 23 | top: 200px; 24 | left: 200px; 25 | } -------------------------------------------------------------------------------- /Course Code/css/level 5/unit_em.css: -------------------------------------------------------------------------------- 1 | body { 2 | font-size: 100px; 3 | } 4 | 5 | #first { 6 | height: 200px; 7 | width: 200px; 8 | background-color: aqua; 9 | font-size: 25px; 10 | } 11 | 12 | #second { 13 | background-color: blueviolet; 14 | width: 70%; 15 | height: 50%; 16 | font-size: 2em; 17 | } -------------------------------------------------------------------------------- /Course Code/css/level 5/unit_percentage.css: -------------------------------------------------------------------------------- 1 | #first { 2 | height: 200px; 3 | width: 200px; 4 | background-color: aqua; 5 | font-size: 25px; 6 | } 7 | 8 | #second { 9 | background-color: blueviolet; 10 | width: 50%; 11 | height: 30%; 12 | } -------------------------------------------------------------------------------- /Course Code/css/level 5/unit_rem.css: -------------------------------------------------------------------------------- 1 | * { 2 | font-size: 50px; 3 | } 4 | 5 | #first { 6 | height: 200px; 7 | width: 200px; 8 | background-color: aqua; 9 | font-size: 10px; 10 | } 11 | 12 | #second { 13 | background-color: blueviolet; 14 | width: 70%; 15 | height: 50%; 16 | font-size: 2rem; 17 | } -------------------------------------------------------------------------------- /Course Code/css/level 5/z-index.css: -------------------------------------------------------------------------------- 1 | .container { 2 | position: relative; 3 | } 4 | .box1, .box2 { 5 | position: absolute; 6 | border: 3px solid black; 7 | width: 100px; 8 | height: 100px; 9 | text-align: center; 10 | font-size: 25px; 11 | } 12 | .box1 { 13 | background-color: red; 14 | left: 20px; 15 | top: 60px; 16 | z-index: 2; 17 | } 18 | .box2 { 19 | background-color: aqua; 20 | left: 60px; 21 | top: 20px; 22 | z-index: 1; 23 | } -------------------------------------------------------------------------------- /Course Code/css/level 6/flex_wrap.css: -------------------------------------------------------------------------------- 1 | * { 2 | margin: 0; 3 | padding: 0; 4 | } 5 | .box { 6 | height: 100px; 7 | width: 100px; 8 | border: 3px solid black; 9 | margin-right: 5px; 10 | } 11 | #heading {margin-left: 50px;} 12 | #container { 13 | height: 250px; 14 | width: 335px; 15 | padding: 10px; 16 | margin: 20px; 17 | border: 3px solid black; 18 | 19 | display: flex; 20 | flex-wrap: wrap; 21 | } 22 | 23 | #box1 { background-color: aqua;} 24 | #box2 { background-color: blueviolet;} 25 | #box3 { background-color: yellow;} 26 | #box4 { background-color: tomato;} -------------------------------------------------------------------------------- /Course Code/css/level 6/flexbox_align_content.css: -------------------------------------------------------------------------------- 1 | * { 2 | margin: 0; 3 | padding: 0; 4 | } 5 | .box { 6 | height: 75px; 7 | width: 75px; 8 | border: 3px solid black; 9 | margin-right: 5px; 10 | } 11 | #heading {margin-left: 50px;} 12 | #container { 13 | height: 300px; 14 | width: 400px; 15 | padding: 10px; 16 | margin: 20px; 17 | border: 3px solid black; 18 | 19 | display: flex; 20 | flex-direction: row; 21 | justify-content: center; 22 | flex-wrap: wrap; 23 | align-content: center; 24 | } 25 | 26 | #box1 { background-color: aqua;} 27 | #box2 { background-color: blueviolet;} 28 | #box3 { background-color: yellow;} 29 | #box4 { background-color: hotpink;} 30 | #box5 { background-color: gold} 31 | #box6 { background-color: lightslategray;} -------------------------------------------------------------------------------- /Course Code/css/level 6/flexbox_align_items.css: -------------------------------------------------------------------------------- 1 | * { 2 | margin: 0; 3 | padding: 0; 4 | } 5 | .box { 6 | height: 75px; 7 | width: 75px; 8 | border: 3px solid black; 9 | margin-right: 5px; 10 | } 11 | #heading {margin-left: 50px;} 12 | #container { 13 | height: 300px; 14 | width: 400px; 15 | padding: 10px; 16 | margin: 20px; 17 | border: 3px solid black; 18 | 19 | display: flex; 20 | flex-direction: row; 21 | justify-content: center; 22 | align-items: center; 23 | } 24 | 25 | #box1 { background-color: aqua;} 26 | #box2 { background-color: blueviolet;} 27 | #box3 { background-color: yellow;} -------------------------------------------------------------------------------- /Course Code/css/level 6/flexbox_align_self.css: -------------------------------------------------------------------------------- 1 | * { 2 | margin: 0; 3 | padding: 0; 4 | } 5 | .box { 6 | height: 75px; 7 | width: 75px; 8 | border: 3px solid black; 9 | margin-right: 5px; 10 | } 11 | #heading {margin-left: 50px;} 12 | #container { 13 | height: 300px; 14 | width: 400px; 15 | padding: 10px; 16 | margin: 20px; 17 | border: 3px solid black; 18 | 19 | display: flex; 20 | flex-direction: row; 21 | justify-content: center; 22 | flex-wrap: wrap; 23 | align-items: start; 24 | } 25 | 26 | #box1 { background-color: aqua;} 27 | #box2 { background-color: blueviolet;} 28 | #box4 { background-color: hotpink;} 29 | #box3 { 30 | background-color: yellow; 31 | align-self: center; 32 | } -------------------------------------------------------------------------------- /Course Code/css/level 6/flexbox_direction.css: -------------------------------------------------------------------------------- 1 | * { 2 | margin: 0; 3 | padding: 0; 4 | } 5 | .box { 6 | height: 100px; 7 | width: 100px; 8 | border: 3px solid black; 9 | margin-right: 5px; 10 | } 11 | #heading {margin-left: 50px;} 12 | #container { 13 | height: 150px; 14 | width: 600px; 15 | padding: 10px; 16 | margin: 20px; 17 | border: 3px solid black; 18 | 19 | display: flex; 20 | flex-direction: row-reverse; 21 | } 22 | 23 | #box1 { background-color: aqua;} 24 | #box2 { background-color: blueviolet;} 25 | #box3 { background-color: yellow;} 26 | #box4 { background-color: tomato;} -------------------------------------------------------------------------------- /Course Code/css/level 6/flexbox_flex_shrink.css: -------------------------------------------------------------------------------- 1 | * { 2 | margin: 0; 3 | padding: 0; 4 | } 5 | .box { 6 | height: 75px; 7 | width: 75px; 8 | border: 3px solid black; 9 | margin-right: 5px; 10 | } 11 | #heading {margin-left: 50px;} 12 | #container { 13 | height: 150px; 14 | width: 500px; 15 | padding: 10px; 16 | margin: 20px; 17 | border: 3px solid black; 18 | 19 | display: flex; 20 | justify-content: space-between; 21 | } 22 | 23 | #box1 { background-color: aqua;} 24 | #box2 { background-color: blueviolet;} 25 | #box3 { 26 | background-color: yellow; 27 | flex-grow: 4; 28 | } 29 | #box4 { background-color: tomato;} -------------------------------------------------------------------------------- /Course Code/css/level 6/flexbox_items_order.css: -------------------------------------------------------------------------------- 1 | * { 2 | margin: 0; 3 | padding: 0; 4 | } 5 | .box { 6 | height: 75px; 7 | width: 75px; 8 | border: 3px solid black; 9 | margin-right: 5px; 10 | } 11 | #heading {margin-left: 50px;} 12 | #container { 13 | height: 150px; 14 | width: 600px; 15 | padding: 10px; 16 | margin: 20px; 17 | border: 3px solid black; 18 | 19 | display: flex; 20 | justify-content: space-between; 21 | } 22 | 23 | #box1 { 24 | background-color: aqua; 25 | order: 3 26 | } 27 | #box2 { 28 | background-color: blueviolet; 29 | order: 1; 30 | } 31 | #box3 { 32 | background-color: yellow; 33 | order: 4; 34 | } 35 | #box4 { 36 | background-color: tomato; 37 | order: 2; 38 | } -------------------------------------------------------------------------------- /Course Code/css/level 6/flexbox_justify_content.css: -------------------------------------------------------------------------------- 1 | * { 2 | margin: 0; 3 | padding: 0; 4 | } 5 | .box { 6 | height: 75px; 7 | width: 75px; 8 | border: 3px solid black; 9 | margin-right: 5px; 10 | } 11 | #heading {margin-left: 50px;} 12 | #container { 13 | height: 150px; 14 | width: 600px; 15 | padding: 10px; 16 | margin: 20px; 17 | border: 3px solid black; 18 | 19 | display: flex; 20 | justify-content: space-between; 21 | } 22 | 23 | #box1 { background-color: aqua;} 24 | #box2 { background-color: blueviolet;} 25 | #box3 { background-color: yellow;} 26 | #box4 { background-color: tomato;} -------------------------------------------------------------------------------- /Course Code/css/level 6/float.css: -------------------------------------------------------------------------------- 1 | .container { 2 | height: 110px; 3 | width: 300px; 4 | border: 1px solid #000; 5 | } 6 | 7 | .box { 8 | width: 100px; 9 | height: 100px; 10 | margin: 5px; 11 | } 12 | 13 | .box1 { 14 | background-color: red; 15 | float: right; 16 | } 17 | 18 | .box2 { 19 | background-color: blue; 20 | float: left; 21 | } -------------------------------------------------------------------------------- /Course Code/css/level 6/grid.css: -------------------------------------------------------------------------------- 1 | .container { 2 | display: grid; 3 | grid-template-columns: 50px 50px; 4 | grid-template-rows: 50px 50px; 5 | } 6 | 7 | .item1 { 8 | grid-column: 1 / 2; 9 | grid-row: 1 / 2; 10 | background-color: lightblue; 11 | } 12 | 13 | .item2 { 14 | grid-column: 2 / 2; 15 | grid-row: 1 / 2; 16 | background-color: lightgreen; 17 | } 18 | 19 | .item3 { 20 | grid-column: 1 / 2; 21 | grid-row: 2 / 2; 22 | background-color: lightpink; 23 | } 24 | 25 | .item4 { 26 | grid-column: 2 / 2; 27 | grid-row: 2 / 2; 28 | background-color: lightyellow; 29 | } -------------------------------------------------------------------------------- /Course Code/html/level 1/class selector.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Class selector 5 | 9 | 10 | 11 |
First Div
12 |
Second Div
13 |
Third Div
14 | 15 | -------------------------------------------------------------------------------- /Course Code/html/level 1/color.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Color 7 | 15 | 16 | 17 |

Learning Color

18 |

This is my first paragraph

19 | 20 | -------------------------------------------------------------------------------- /Course Code/html/level 1/descendant selector.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Descendant selector 5 | 9 | 10 | 11 |
12 |

13 | Lorem ipsum dolor sit amet consectetur adipisicing elit. Iure, optio? 14 |

15 |
16 |

17 | Lorem ipsum dolor sit amet consectetur adipisicing elit. Iure, optio? 18 |

19 | 20 | -------------------------------------------------------------------------------- /Course Code/html/level 1/element selector.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Element Selector 5 | 10 | 11 | 12 |

Universal Selector

13 |

Lorem ipsum dolor sit amet consectetur adipisicing elit. Nulla, nisi.

14 | 15 | -------------------------------------------------------------------------------- /Course Code/html/level 1/external styling.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | External Styling 5 | 6 | 7 | 8 |

External Styling

9 |

Paragraph is green

10 | 11 | -------------------------------------------------------------------------------- /Course Code/html/level 1/group selector.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Group selector 5 | 10 | 11 | 12 |

Heading 1

13 |

Heading 2

14 |

Heading 3

15 |

Heading 4

16 | 17 | -------------------------------------------------------------------------------- /Course Code/html/level 1/id class.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Attributes 5 | 6 | 7 |

Id and Class

8 |

Lorem ipsum dolor sit amet consectetur adipisicing elit. Nulla, nisi.

9 | 10 | -------------------------------------------------------------------------------- /Course Code/html/level 1/id selector.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Id selector 5 | 9 | 10 | 11 |
First Div
12 |
Second Div
13 | 14 | -------------------------------------------------------------------------------- /Course Code/html/level 1/inline styling.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Inline Styling 5 | 6 | 7 |

Inline Styling

8 |

Paragraph is green

9 | 10 | -------------------------------------------------------------------------------- /Course Code/html/level 1/internal styling.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Internal Styling 5 | 6 | 7 |

Internal Styling

8 |

Paragraph is green

9 | 10 | -------------------------------------------------------------------------------- /Course Code/html/level 1/universal selector.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Universal Selector 5 | 10 | 11 | 12 |

Universal Selector

13 |

Lorem ipsum dolor sit amet consectetur adipisicing elit. Nulla, nisi.

14 | 15 | -------------------------------------------------------------------------------- /Course Code/html/level 2/alpha.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Alpha Channel 5 | 6 | 7 |

First 8 |

First 9 |

First 10 |

First 11 |

First 12 | 13 | -------------------------------------------------------------------------------- /Course Code/html/level 2/background color.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Background Color 5 | 10 | 11 | 12 |
First
13 |
Second
14 | 15 | 16 | -------------------------------------------------------------------------------- /Course Code/html/level 2/background-image.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Background Image 5 | 12 | 13 | 14 |
15 | 16 | -------------------------------------------------------------------------------- /Course Code/html/level 2/height_width.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Height 5 | 11 | 12 | 13 |
Box 1

14 |
Box 2

15 |
Box 3
16 | 17 | -------------------------------------------------------------------------------- /Course Code/html/level 2/hex.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Hex Color 5 | 6 | 7 |
First
8 |
Second
9 |
Third
10 |
Fourth
11 | 12 | -------------------------------------------------------------------------------- /Course Code/html/level 2/rgb.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | RGB Color 5 | 6 | 7 |
First
8 |
Second
9 |
Third
10 |
Fourth
11 | 12 | -------------------------------------------------------------------------------- /Course Code/html/level 2/visibility.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Visibility 5 | 10 | 11 | 12 |
Box 1

13 |
Box 2

14 | 15 | -------------------------------------------------------------------------------- /Course Code/html/level 3/font_family.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Font Family 5 | 6 | 7 | 8 | 13 | 14 | 15 |

Lorem ipsum dolor sit amet

16 |

Lorem ipsum dolor sit amet

17 |

Lorem ipsum dolor sit amet

18 | 19 | -------------------------------------------------------------------------------- /Course Code/html/level 3/font_size.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Font Size 5 | 11 | 12 | 13 |

Lorem ipsum dolor sit amet

14 |

Lorem ipsum dolor sit amet

15 |

Lorem ipsum dolor sit amet

16 |

Lorem ipsum dolor sit amet

17 | 18 | -------------------------------------------------------------------------------- /Course Code/html/level 3/font_style.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Font Style 5 | 10 | 11 | 12 |

Lorem ipsum dolor sit amet

13 |

Lorem ipsum dolor sit amet

14 |

Lorem ipsum dolor sit amet

15 | 16 | -------------------------------------------------------------------------------- /Course Code/html/level 3/font_weight.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Font Weight 5 | 11 | 12 | 13 |

Lorem ipsum dolor sit amet

14 |

Lorem ipsum dolor sit amet

15 |

Lorem ipsum dolor sit amet

16 |

Lorem ipsum dolor sit amet

17 | 18 | -------------------------------------------------------------------------------- /Course Code/html/level 3/icons.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Icons 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Course Code/html/level 3/line_height.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Line Height 5 | 9 | 10 | 11 |

Lorem ipsum dolor sit amet consectetur adipisicing elit. Numquam facere maxime autem, culpa


12 |

Lorem ipsum dolor sit amet consectetur adipisicing elit. Numquam facere maxime autem, culpa

13 | 14 | -------------------------------------------------------------------------------- /Course Code/html/level 3/text_align.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Text Align 5 | 11 | 12 | 13 |

Box1

14 |

Box2

15 |

Box3

16 | 17 | -------------------------------------------------------------------------------- /Course Code/html/level 3/text_decoration.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Text Decoration 5 | 10 | 11 | 12 |

Box1

13 |

Box2

14 |

Box3


15 | Link1
16 | Link2 17 | 18 | -------------------------------------------------------------------------------- /Course Code/html/level 3/text_decoration_color.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Text Decoration Style 5 | 12 | 13 | 14 |

Box1

15 |

Box2

16 |

Box3

17 |

Box4

18 | 19 | -------------------------------------------------------------------------------- /Course Code/html/level 3/text_decoration_style.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Text Decoration Style 5 | 12 | 13 | 14 |

Box1

15 |

Box2

16 |

Box3

17 |

Box4

18 | 19 | -------------------------------------------------------------------------------- /Course Code/html/level 3/text_transform.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Text Transform 5 | 11 | 12 | 13 |

First box

14 |

Second box

15 |

Third box

16 |

Fourth box

17 | 18 | -------------------------------------------------------------------------------- /Course Code/html/level 4/border.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Border 5 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /Course Code/html/level 4/border_radius.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Border Radius 5 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /Course Code/html/level 4/box_sizing.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Box Sizing 5 | 15 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /Course Code/html/level 4/margin.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | margin 5 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /Course Code/html/level 4/padding.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Padding 5 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /Course Code/html/level 5/display_block.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Display Block 5 | 6 | 7 | 8 |
9 |
box1
10 |
box2
11 |
box3
12 |
13 | 14 | -------------------------------------------------------------------------------- /Course Code/html/level 5/display_inline.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Display Inline 5 | 6 | 7 | 8 |
9 |
box1
10 |
box2
11 |
box3
12 |
13 | 14 | -------------------------------------------------------------------------------- /Course Code/html/level 5/display_inline_block.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Display Inline Block 5 | 6 | 7 | 8 |
9 |
box1
10 |
box2
11 |
box3
12 |
13 | 14 | -------------------------------------------------------------------------------- /Course Code/html/level 5/display_none.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Display None 5 | 6 | 7 | 8 |
9 |
box1
10 |
box2
11 |
box3
12 |
13 | 14 | -------------------------------------------------------------------------------- /Course Code/html/level 5/position.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Position 5 | 6 | 7 | 8 |
1 Static
9 |
2 Relative
10 |
3 Fixed
11 |
4 Absolute
12 | 13 | -------------------------------------------------------------------------------- /Course Code/html/level 5/unit_em.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Unit Em 5 | 6 | 7 | 8 | Body 9 |
10 | first 11 |
12 | second 13 |
14 |
15 | 16 | -------------------------------------------------------------------------------- /Course Code/html/level 5/unit_percentage.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Unit Percentage 5 | 6 | 7 | 8 |
9 | first 10 |
11 | second 12 |
13 |
14 | 15 | -------------------------------------------------------------------------------- /Course Code/html/level 5/unit_rem.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Unit Rem 5 | 6 | 7 | 8 | Body 9 |
10 | first 11 |
12 | second 13 |
14 |
15 | 16 | -------------------------------------------------------------------------------- /Course Code/html/level 5/unit_vh_vw.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Unit VH and VW 5 | 12 | 13 | 14 |
15 | 16 | -------------------------------------------------------------------------------- /Course Code/html/level 5/z-index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Z-Index 5 | 6 | 7 | 8 |
9 |
Z-index 2
10 |
Z-index 1
11 |
12 | 13 | -------------------------------------------------------------------------------- /Course Code/html/level 6/flex_wrap.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Flexbox Wrap 5 | 6 | 7 | 8 |

Flex Container

9 |
10 |
Flex Item 1
11 |
Flex Item 2
12 |
Flex Item 3
13 |
Flex Item 4
14 |
15 | 16 | -------------------------------------------------------------------------------- /Course Code/html/level 6/flexbox_align_content.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Flex Align Content 5 | 6 | 7 | 8 |

Flexbox Container

9 |
10 |
Flex Item 1
11 |
Flex Item 2
12 |
Flex Item 3
13 |
Flex Item 4
14 |
Flex Item 5
15 |
Flex Item 6
16 |
17 | 18 | -------------------------------------------------------------------------------- /Course Code/html/level 6/flexbox_align_items.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Flex Align Items 5 | 6 | 7 | 8 |

Flexbox Container

9 |
10 |
Flex Item 1
11 |
Flex Item 2
12 |
Flex Item 3
13 |
14 | 15 | -------------------------------------------------------------------------------- /Course Code/html/level 6/flexbox_align_self.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Flex Align Self 5 | 6 | 7 | 8 |

Flexbox Container

9 |
10 |
Flex Item 1
11 |
Flex Item 2
12 |
Flex Item 3
13 |
Flex Item 4
14 |
15 | 16 | -------------------------------------------------------------------------------- /Course Code/html/level 6/flexbox_direction.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Flexbox Direction 5 | 6 | 7 | 8 |

Flex Container

9 |
10 |
Flex Item 1
11 |
Flex Item 2
12 |
Flex Item 3
13 |
Flex Item 4
14 |
15 | 16 | -------------------------------------------------------------------------------- /Course Code/html/level 6/flexbox_flex_shrink.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Flex Shrink 5 | 6 | 7 | 8 |

Flexbox Container

9 |
10 |
Flex Item 1
11 |
Flex Item 2
12 |
Flex Item 3
13 |
Flex Item 4
14 |
15 | 16 | -------------------------------------------------------------------------------- /Course Code/html/level 6/flexbox_items_order.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Flex Items order 5 | 6 | 7 | 8 |

Flexbox Container

9 |
10 |
Flex Item 1
11 |
Flex Item 2
12 |
Flex Item 3
13 |
Flex Item 4
14 |
15 | 16 | -------------------------------------------------------------------------------- /Course Code/html/level 6/flexbox_justify_content.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Flex Justify Content 5 | 6 | 7 | 8 |

Flexbox Container

9 |
10 |
Flex Item 1
11 |
Flex Item 2
12 |
Flex Item 3
13 |
Flex Item 4
14 |
15 | 16 | -------------------------------------------------------------------------------- /Course Code/html/level 6/float.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Float Property 5 | 6 | 7 | 8 |
9 |
10 |
11 |
12 | 13 | -------------------------------------------------------------------------------- /Course Code/html/level 6/grid.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Grid 5 | 6 | 7 | 8 | 9 |
10 |
Item 1
11 |
Item 2
12 |
Item 3
13 |
Item 4
14 |
15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /Course Code/html/level 6/media_query_combination.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Media Query 5 | 18 | 19 | 20 |
21 | 22 | -------------------------------------------------------------------------------- /Course Code/html/level 6/media_query_max_width.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Media Query 5 | 18 | 19 | 20 |
21 | 22 | -------------------------------------------------------------------------------- /Course Code/html/level 6/media_query_min_width.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Media Query 5 | 18 | 19 | 20 |
21 | 22 | -------------------------------------------------------------------------------- /Course Code/html/level 6/media_query_width.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Media Query 5 | 17 | 18 | 19 |
20 | 21 | -------------------------------------------------------------------------------- /Course Code/html/level 7/animation.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Animation 5 | 31 | 32 | 33 |
Animation
34 | 35 | -------------------------------------------------------------------------------- /Course Code/html/level 7/animation_percentage.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Animation 5 | 32 | 33 | 34 |
Animation
35 | 36 | -------------------------------------------------------------------------------- /Course Code/html/level 7/pseudo_classes.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Pseudo Classes 5 | 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /Course Code/html/level 7/transform_rotate.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Transform Rotate 5 | 26 | 27 | 28 |
45 deg
29 |
180 deg
30 |
x 45 deg
31 |
y 45 deg
32 | 33 | -------------------------------------------------------------------------------- /Course Code/html/level 7/transform_scale.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Transform Scale 5 | 26 | 27 | 28 |
Scale Twice
29 |
Scale 4 times
30 |
Scale X Twice
31 |
Scale Y Twice
32 | 33 | -------------------------------------------------------------------------------- /Course Code/html/level 7/transform_skew.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Transform Skew 5 | 23 | 24 | 25 |
Translate 50px
26 |
Translate 50px, 50px
27 | 28 | -------------------------------------------------------------------------------- /Course Code/html/level 7/transform_translate.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Transform Translate 5 | 26 | 27 | 28 |
Translate 50px
29 |
Translate 50px, 50px
30 |
Translate X 50px
31 |
Translate Y 50px
32 | 33 | -------------------------------------------------------------------------------- /Course Code/html/level 7/transition.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Transition Property 5 | 30 | 31 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /Course Code/images/css.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Complete-Coding/CSS_Complete_YouTube/9187773420f2fd9c246d1734393310489d7883d9/Course Code/images/css.png -------------------------------------------------------------------------------- /Course Code/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Learning CSS 7 | 8 | 9 |

Learning CSS

10 | 11 | -------------------------------------------------------------------------------- /Practise Sets/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Complete-Coding/CSS_Complete_YouTube/9187773420f2fd9c246d1734393310489d7883d9/Practise Sets/.DS_Store -------------------------------------------------------------------------------- /Practise Sets/Set 1/index.css: -------------------------------------------------------------------------------- 1 | /* This is my comment */ 2 | #heading { 3 | color:lightslategray 4 | } -------------------------------------------------------------------------------- /Practise Sets/Set 1/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Practise Set 1 5 | 6 | 26 | 27 | 28 |

This is my heading

29 |
30 |
Heading
31 |
32 |
Div
33 |

Lorem ipsum dolor sit amet consectetur adipisicing elit. Recusandae, cum?

34 |

heading 2

35 |
36 |
First
37 |
Second
38 | 39 | -------------------------------------------------------------------------------- /Practise Sets/Set 2/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Practice Set 2 5 | 28 | 29 | 30 |
31 |
This is my nav bar
32 |
33 |
34 |
Product 1
35 |
36 | 39 | 40 | -------------------------------------------------------------------------------- /Practise Sets/Set 2/jeans.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Complete-Coding/CSS_Complete_YouTube/9187773420f2fd9c246d1734393310489d7883d9/Practise Sets/Set 2/jeans.webp -------------------------------------------------------------------------------- /Practise Sets/Set 3/index.css: -------------------------------------------------------------------------------- 1 | * { 2 | margin: 0; 3 | padding: 0; 4 | font-family: 'Times New Roman', Times, serif; 5 | } 6 | #nav h1 { 7 | background-color: powderblue; 8 | text-align: center; 9 | text-transform: capitalize; 10 | } 11 | #inner { 12 | font-size: 10px; 13 | } 14 | #outer { 15 | font-size: 25px; 16 | } -------------------------------------------------------------------------------- /Practise Sets/Set 3/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Practise set 3 5 | 6 | 7 | 8 | 9 | 12 |
13 | Outer 14 |
15 | Inner 16 |
17 |
18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /Practise Sets/Set 4/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Practise Set 4 5 | 23 | 24 | 25 |
Box1
26 |
Box2
27 | 28 | 29 | -------------------------------------------------------------------------------- /Practise Sets/Set 5/index.css: -------------------------------------------------------------------------------- 1 | * { 2 | margin: 0px; 3 | padding: 0px; 4 | } 5 | nav { 6 | padding: 5px; 7 | } 8 | nav a { 9 | text-decoration: none; 10 | margin-left: 55px; 11 | padding: 5px; 12 | } 13 | header { 14 | background-color: palegreen; 15 | height: 30px; 16 | } 17 | #second { 18 | height: 50px; 19 | width: 50px; 20 | background-color: green; 21 | border-radius: 50%; 22 | } 23 | .box { 24 | height: 100px; 25 | width: 100px; 26 | background-color: violet; 27 | margin: 5px; 28 | display: inline-block; 29 | } 30 | #box2 { 31 | z-index: 2; 32 | position: absolute; 33 | left: 20px; 34 | } 35 | #container { 36 | border: 3px solid; 37 | margin: 5px; 38 | } 39 | #box4 { 40 | position: fixed; 41 | right: 10px; 42 | } 43 | footer { 44 | position: fixed; 45 | bottom: 0px; 46 | background-color: mediumaquamarine; 47 | } -------------------------------------------------------------------------------- /Practise Sets/Set 5/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Practise Set 5 5 | 6 | 7 | 8 |
9 | 15 |
16 |
17 |
18 |
19 |
Box 1
20 |
Box 2
21 |
Box 3
22 |
23 | 24 |
Box 4
25 |
26 | 29 | 30 | -------------------------------------------------------------------------------- /Practise Sets/Set 6/bharat.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Complete-Coding/CSS_Complete_YouTube/9187773420f2fd9c246d1734393310489d7883d9/Practise Sets/Set 6/bharat.jpeg -------------------------------------------------------------------------------- /Practise Sets/Set 6/index.css: -------------------------------------------------------------------------------- 1 | * { 2 | margin: 0; 3 | padding: 0; 4 | } 5 | nav a { 6 | text-decoration: none; 7 | } 8 | img { 9 | height: 100px; 10 | } 11 | #image_container { 12 | border: 2px solid black; 13 | height: 150px; 14 | display: flex; 15 | justify-content: center; 16 | align-items: center; 17 | } 18 | nav { 19 | display: flex; 20 | justify-content: space-around; 21 | height: 25px; 22 | padding-top: 5px; 23 | } 24 | header { 25 | background-color: moccasin; 26 | } 27 | 28 | #box_container { 29 | border: 2px solid black; 30 | display: flex; 31 | justify-content: space-around; 32 | height: 80px; 33 | width: 400px; 34 | } 35 | #box2 { 36 | flex-grow: 1; 37 | flex-shrink: 1; 38 | } 39 | 40 | .box { 41 | height: 75px; 42 | width: 75px; 43 | border: 2px solid red; 44 | flex-shrink: 0; 45 | } 46 | 47 | #media_box { 48 | height: 50px; 49 | width: 50px; 50 | background-color: darkseagreen; 51 | border: 2px solid black; 52 | } 53 | 54 | @media screen and (min-width: 300px) and (max-width: 400px) { 55 | #media_box { 56 | background-color: red; 57 | } 58 | } 59 | 60 | @media screen and (min-width: 400px) { 61 | #media_box { 62 | background-color: blue; 63 | } 64 | } -------------------------------------------------------------------------------- /Practise Sets/Set 6/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Practise Set 6 5 | 6 | 7 | 8 |
9 | 15 |
16 |
17 |
18 | Map of Bharat 19 |
20 |
21 |
Box1
22 |
Box2
23 |
Box3
24 |
25 |


26 |
Media Box
27 | 28 |
29 | 30 | -------------------------------------------------------------------------------- /Practise Sets/Set 7/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Practise Set 7 5 | 30 | 31 | 32 |
33 |
34 |
35 |
36 | 37 | 38 | -------------------------------------------------------------------------------- /Project Myntra Clone/images/banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Complete-Coding/CSS_Complete_YouTube/9187773420f2fd9c246d1734393310489d7883d9/Project Myntra Clone/images/banner.jpg -------------------------------------------------------------------------------- /Project Myntra Clone/images/categories/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Complete-Coding/CSS_Complete_YouTube/9187773420f2fd9c246d1734393310489d7883d9/Project Myntra Clone/images/categories/1.jpg -------------------------------------------------------------------------------- /Project Myntra Clone/images/categories/10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Complete-Coding/CSS_Complete_YouTube/9187773420f2fd9c246d1734393310489d7883d9/Project Myntra Clone/images/categories/10.jpg -------------------------------------------------------------------------------- /Project Myntra Clone/images/categories/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Complete-Coding/CSS_Complete_YouTube/9187773420f2fd9c246d1734393310489d7883d9/Project Myntra Clone/images/categories/2.jpg -------------------------------------------------------------------------------- /Project Myntra Clone/images/categories/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Complete-Coding/CSS_Complete_YouTube/9187773420f2fd9c246d1734393310489d7883d9/Project Myntra Clone/images/categories/3.jpg -------------------------------------------------------------------------------- /Project Myntra Clone/images/categories/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Complete-Coding/CSS_Complete_YouTube/9187773420f2fd9c246d1734393310489d7883d9/Project Myntra Clone/images/categories/4.jpg -------------------------------------------------------------------------------- /Project Myntra Clone/images/categories/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Complete-Coding/CSS_Complete_YouTube/9187773420f2fd9c246d1734393310489d7883d9/Project Myntra Clone/images/categories/5.jpg -------------------------------------------------------------------------------- /Project Myntra Clone/images/categories/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Complete-Coding/CSS_Complete_YouTube/9187773420f2fd9c246d1734393310489d7883d9/Project Myntra Clone/images/categories/6.jpg -------------------------------------------------------------------------------- /Project Myntra Clone/images/categories/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Complete-Coding/CSS_Complete_YouTube/9187773420f2fd9c246d1734393310489d7883d9/Project Myntra Clone/images/categories/7.jpg -------------------------------------------------------------------------------- /Project Myntra Clone/images/categories/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Complete-Coding/CSS_Complete_YouTube/9187773420f2fd9c246d1734393310489d7883d9/Project Myntra Clone/images/categories/8.jpg -------------------------------------------------------------------------------- /Project Myntra Clone/images/categories/9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Complete-Coding/CSS_Complete_YouTube/9187773420f2fd9c246d1734393310489d7883d9/Project Myntra Clone/images/categories/9.jpg -------------------------------------------------------------------------------- /Project Myntra Clone/images/myntra_logo.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Complete-Coding/CSS_Complete_YouTube/9187773420f2fd9c246d1734393310489d7883d9/Project Myntra Clone/images/myntra_logo.webp -------------------------------------------------------------------------------- /Project Myntra Clone/images/offers/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Complete-Coding/CSS_Complete_YouTube/9187773420f2fd9c246d1734393310489d7883d9/Project Myntra Clone/images/offers/1.png -------------------------------------------------------------------------------- /Project Myntra Clone/images/offers/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Complete-Coding/CSS_Complete_YouTube/9187773420f2fd9c246d1734393310489d7883d9/Project Myntra Clone/images/offers/10.png -------------------------------------------------------------------------------- /Project Myntra Clone/images/offers/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Complete-Coding/CSS_Complete_YouTube/9187773420f2fd9c246d1734393310489d7883d9/Project Myntra Clone/images/offers/11.png -------------------------------------------------------------------------------- /Project Myntra Clone/images/offers/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Complete-Coding/CSS_Complete_YouTube/9187773420f2fd9c246d1734393310489d7883d9/Project Myntra Clone/images/offers/12.png -------------------------------------------------------------------------------- /Project Myntra Clone/images/offers/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Complete-Coding/CSS_Complete_YouTube/9187773420f2fd9c246d1734393310489d7883d9/Project Myntra Clone/images/offers/2.png -------------------------------------------------------------------------------- /Project Myntra Clone/images/offers/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Complete-Coding/CSS_Complete_YouTube/9187773420f2fd9c246d1734393310489d7883d9/Project Myntra Clone/images/offers/3.png -------------------------------------------------------------------------------- /Project Myntra Clone/images/offers/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Complete-Coding/CSS_Complete_YouTube/9187773420f2fd9c246d1734393310489d7883d9/Project Myntra Clone/images/offers/4.png -------------------------------------------------------------------------------- /Project Myntra Clone/images/offers/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Complete-Coding/CSS_Complete_YouTube/9187773420f2fd9c246d1734393310489d7883d9/Project Myntra Clone/images/offers/5.png -------------------------------------------------------------------------------- /Project Myntra Clone/images/offers/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Complete-Coding/CSS_Complete_YouTube/9187773420f2fd9c246d1734393310489d7883d9/Project Myntra Clone/images/offers/6.png -------------------------------------------------------------------------------- /Project Myntra Clone/images/offers/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Complete-Coding/CSS_Complete_YouTube/9187773420f2fd9c246d1734393310489d7883d9/Project Myntra Clone/images/offers/7.png -------------------------------------------------------------------------------- /Project Myntra Clone/images/offers/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Complete-Coding/CSS_Complete_YouTube/9187773420f2fd9c246d1734393310489d7883d9/Project Myntra Clone/images/offers/8.png -------------------------------------------------------------------------------- /Project Myntra Clone/images/offers/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Complete-Coding/CSS_Complete_YouTube/9187773420f2fd9c246d1734393310489d7883d9/Project Myntra Clone/images/offers/9.png -------------------------------------------------------------------------------- /Project Myntra Clone/index.css: -------------------------------------------------------------------------------- 1 | * { 2 | margin: 0; 3 | padding: 0; 4 | font-family: Assistant,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica,Arial,sans-serif; 5 | box-sizing: border-box; 6 | } 7 | header { 8 | display: flex; 9 | background-color: #ffffff; 10 | height: 80px; 11 | justify-content: space-between; 12 | align-items: center; 13 | border-bottom: 1px solid #b6b1b1; 14 | } 15 | .myntra_home { 16 | height: 45px; 17 | } 18 | .logo_container { 19 | margin-left: 4%; 20 | } 21 | .action_bar { 22 | margin-right: 4%; 23 | } 24 | .nav_bar { 25 | display: flex; 26 | min-width: 500px; 27 | justify-content: space-evenly; 28 | } 29 | .nav_bar a { 30 | font-size: 14px; 31 | letter-spacing: .3px; 32 | color: #282c3f; 33 | font-weight: 700; 34 | text-transform: uppercase; 35 | text-decoration: none; 36 | padding: 28px 0; 37 | border-bottom: 5px solid #ffffff; 38 | } 39 | .nav_bar a:hover { 40 | border-bottom: 4px solid #f54e77; 41 | } 42 | 43 | .nav_bar a sup { 44 | color: #ff3f6c; 45 | font-size: 10px; 46 | } 47 | 48 | .search_bar { 49 | height: 40px; 50 | min-width: 200px; 51 | width: 30%; 52 | display: flex; 53 | align-items: center; 54 | } 55 | .search_icon { 56 | box-sizing: content-box; 57 | height: 20px; 58 | padding: 10px; 59 | 60 | background-color: #f5f5f6; 61 | color: #282c3f; 62 | font-weight: 300; 63 | border-radius: 4px 0 0 4px; 64 | } 65 | .search_input { 66 | color: #696e79; 67 | background-color: #f5f5f6; 68 | flex-grow: 1; 69 | height: 40px; 70 | border: 0; 71 | border-radius: 0 4px 4px 0; 72 | } 73 | 74 | .action_bar { 75 | display: flex; 76 | min-width: 200px; 77 | justify-content: space-evenly; 78 | } 79 | 80 | .action_container { 81 | display: flex; 82 | flex-direction: column; 83 | align-items: center; 84 | } 85 | 86 | /* Main section */ 87 | .banner_container { 88 | margin: 40px 0; 89 | } 90 | .banner_image { 91 | width: 100%; 92 | } 93 | 94 | .category_heading { 95 | text-transform: uppercase; 96 | color: #3e4152; 97 | letter-spacing: .15em; 98 | font-size: 1.8em; 99 | margin: 50px 0 10px 30px; 100 | max-height: 5em; 101 | font-weight: 700; 102 | } 103 | 104 | .category_items { 105 | display: flex; 106 | flex-wrap: wrap; 107 | justify-content: space-evenly; 108 | } 109 | 110 | .sale_item { 111 | width: 250px; 112 | } 113 | 114 | .footer_container { 115 | padding: 30px 0px 40px 0px; 116 | background: #FAFBFC; 117 | display: flex; 118 | justify-content: space-evenly; 119 | } 120 | 121 | .footer_column { 122 | display: flex; 123 | flex-direction: column; 124 | } 125 | 126 | .footer_column h3 { 127 | color: #282c3f; 128 | font-size: 14px; 129 | margin-bottom: 25px; 130 | } 131 | 132 | .footer_column a { 133 | color: #696b79; 134 | font-size: 15px; 135 | text-decoration: none; 136 | padding-bottom: 5px; 137 | } 138 | 139 | .copyright { 140 | color: #94969f; 141 | text-align: end; 142 | padding: 15px; 143 | } -------------------------------------------------------------------------------- /Project Myntra Clone/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Myntra Clone 5 | 6 | 7 | 8 | 9 |
10 |
11 | Myntra Home 12 |
13 | 21 | 25 |
26 |
27 | person 28 | Profile 29 |
30 | 31 |
32 | favorite 33 | Wishlist 34 |
35 | 36 |
37 | shopping_bag 38 | Bag 39 |
40 |
41 |
42 |
43 | 46 |
MEDAL WORTHY BRANDS TO BAG
47 |
48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 |
61 | 62 |
SHOP BY CATEGORY
63 |
64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 |
75 |
76 | 120 | 121 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # CSS Complete YouTube 2 | 3 | ![Thumbnail](https://github.com/KG-Coding-with-Prashant-Sir/CSS_Complete_YouTube/assets/102736197/529aed4c-d035-4a4a-bbe3-55472b6a6e82) 4 | --------------------------------------------------------------------------------