The Code Dose
27 |@thecodedose
28 |├── .gitignore ├── challenges ├── table │ ├── 1.md │ └── 1.png ├── flex │ ├── 1.md │ ├── 1.png │ ├── 2.png │ ├── 3.png │ ├── 4.png │ ├── 2.md │ ├── 4.md │ └── 3.md ├── grid │ ├── 1.png │ ├── 2.png │ ├── 1.md │ └── 2.md ├── position │ ├── 1.png │ ├── 2.png │ ├── 3.png │ ├── 4.png │ ├── 5.png │ ├── 5.md │ ├── 3.md │ ├── 4.md │ ├── 1.md │ └── 2.md └── transform │ ├── 1.png │ └── 1.md ├── solutions ├── flex │ ├── 1 │ │ ├── solution_image.png │ │ ├── style.css │ │ └── index.html │ ├── 2 │ │ ├── solution_image.png │ │ ├── index.html │ │ └── style.css │ ├── 3 │ │ ├── image.png │ │ ├── solution_image.png │ │ ├── style.css │ │ └── index.html │ └── 4 │ │ ├── icons │ │ ├── arrow.png │ │ ├── like.png │ │ ├── plus.png │ │ └── play-button.png │ │ ├── solution_image.png │ │ ├── style.css │ │ └── index.html ├── transform │ └── 1 │ │ ├── screemshot.PNG │ │ ├── index.html │ │ └── style.css └── table │ └── 1 │ ├── Table-1-Solution-img.png │ ├── style.css │ └── index.html └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /challenges/table/1.md: -------------------------------------------------------------------------------- 1 | # Description 2 | 3 |  4 | 5 | Implement this table. 6 | -------------------------------------------------------------------------------- /challenges/flex/1.md: -------------------------------------------------------------------------------- 1 | # Description 2 | 3 |  4 | 5 | Implement the above design using Flexbox. 6 | -------------------------------------------------------------------------------- /challenges/flex/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Code-Dose/html-css-challenges/HEAD/challenges/flex/1.png -------------------------------------------------------------------------------- /challenges/flex/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Code-Dose/html-css-challenges/HEAD/challenges/flex/2.png -------------------------------------------------------------------------------- /challenges/flex/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Code-Dose/html-css-challenges/HEAD/challenges/flex/3.png -------------------------------------------------------------------------------- /challenges/flex/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Code-Dose/html-css-challenges/HEAD/challenges/flex/4.png -------------------------------------------------------------------------------- /challenges/grid/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Code-Dose/html-css-challenges/HEAD/challenges/grid/1.png -------------------------------------------------------------------------------- /challenges/grid/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Code-Dose/html-css-challenges/HEAD/challenges/grid/2.png -------------------------------------------------------------------------------- /challenges/table/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Code-Dose/html-css-challenges/HEAD/challenges/table/1.png -------------------------------------------------------------------------------- /challenges/position/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Code-Dose/html-css-challenges/HEAD/challenges/position/1.png -------------------------------------------------------------------------------- /challenges/position/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Code-Dose/html-css-challenges/HEAD/challenges/position/2.png -------------------------------------------------------------------------------- /challenges/position/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Code-Dose/html-css-challenges/HEAD/challenges/position/3.png -------------------------------------------------------------------------------- /challenges/position/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Code-Dose/html-css-challenges/HEAD/challenges/position/4.png -------------------------------------------------------------------------------- /challenges/position/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Code-Dose/html-css-challenges/HEAD/challenges/position/5.png -------------------------------------------------------------------------------- /challenges/transform/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Code-Dose/html-css-challenges/HEAD/challenges/transform/1.png -------------------------------------------------------------------------------- /solutions/flex/3/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Code-Dose/html-css-challenges/HEAD/solutions/flex/3/image.png -------------------------------------------------------------------------------- /challenges/grid/1.md: -------------------------------------------------------------------------------- 1 | # Description 2 | 3 |  4 | 5 | Implement the above design using a grid for the 4X2 layout. 6 | -------------------------------------------------------------------------------- /challenges/grid/2.md: -------------------------------------------------------------------------------- 1 | # Description 2 | 3 |  4 | 5 | Implement the above design using a grid for the 4X2 layout. 6 | -------------------------------------------------------------------------------- /challenges/position/5.md: -------------------------------------------------------------------------------- 1 | # Description 2 | 3 |  4 | 5 | Implement the given design of two overlapping boxes. 6 | -------------------------------------------------------------------------------- /challenges/position/3.md: -------------------------------------------------------------------------------- 1 | # Description 2 | 3 |  4 | 5 | Implement this search box with a search logo at the left. 6 | -------------------------------------------------------------------------------- /solutions/flex/4/icons/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Code-Dose/html-css-challenges/HEAD/solutions/flex/4/icons/arrow.png -------------------------------------------------------------------------------- /solutions/flex/4/icons/like.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Code-Dose/html-css-challenges/HEAD/solutions/flex/4/icons/like.png -------------------------------------------------------------------------------- /solutions/flex/4/icons/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Code-Dose/html-css-challenges/HEAD/solutions/flex/4/icons/plus.png -------------------------------------------------------------------------------- /solutions/flex/1/solution_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Code-Dose/html-css-challenges/HEAD/solutions/flex/1/solution_image.png -------------------------------------------------------------------------------- /solutions/flex/2/solution_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Code-Dose/html-css-challenges/HEAD/solutions/flex/2/solution_image.png -------------------------------------------------------------------------------- /solutions/flex/3/solution_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Code-Dose/html-css-challenges/HEAD/solutions/flex/3/solution_image.png -------------------------------------------------------------------------------- /solutions/flex/4/solution_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Code-Dose/html-css-challenges/HEAD/solutions/flex/4/solution_image.png -------------------------------------------------------------------------------- /solutions/transform/1/screemshot.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Code-Dose/html-css-challenges/HEAD/solutions/transform/1/screemshot.PNG -------------------------------------------------------------------------------- /solutions/flex/4/icons/play-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Code-Dose/html-css-challenges/HEAD/solutions/flex/4/icons/play-button.png -------------------------------------------------------------------------------- /challenges/flex/2.md: -------------------------------------------------------------------------------- 1 | # Description 2 | 3 |  4 | 5 | Implement the above design using Flexbox. 6 | You can use any image for the logo. 7 | -------------------------------------------------------------------------------- /solutions/table/1/Table-1-Solution-img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Code-Dose/html-css-challenges/HEAD/solutions/table/1/Table-1-Solution-img.png -------------------------------------------------------------------------------- /challenges/flex/4.md: -------------------------------------------------------------------------------- 1 | # Description 2 | 3 |  4 | 5 | Implement the above design using Flexbox. 6 | You can use empty circles instead of the icons. 7 | -------------------------------------------------------------------------------- /challenges/flex/3.md: -------------------------------------------------------------------------------- 1 | # Description 2 | 3 |  4 | 5 | Implement the above design using Flexbox. 6 | You can use any image for the thumbnail an d logo. 7 | -------------------------------------------------------------------------------- /challenges/position/4.md: -------------------------------------------------------------------------------- 1 | # Description 2 | 3 |  4 | 5 | Implement the given design and position the elements carefully on top of an image of your choice. 6 | -------------------------------------------------------------------------------- /challenges/transform/1.md: -------------------------------------------------------------------------------- 1 | # Description 2 | 3 |  4 | 5 | How will you place this "Cool Sites!" text over the "Nominees" text as given in the image above? 6 | -------------------------------------------------------------------------------- /challenges/position/1.md: -------------------------------------------------------------------------------- 1 | # Description 2 | 3 |  4 | 5 | Create a screen with a pink background. 6 | Create a navbar at the bottom of this screen that always stays at the bottom even during scrolling. 7 | -------------------------------------------------------------------------------- /challenges/position/2.md: -------------------------------------------------------------------------------- 1 | # Description 2 | 3 |  4 | 5 | Implement this design such that: 6 | * There's food on the top left corner of this image. 7 | * There's a button on the top right corner of this image. 8 | * There are two logo buttons on the bottom right corner of this image. 9 | -------------------------------------------------------------------------------- /solutions/transform/1/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 |SOTD
13 |Creator
16 |Font & Color
19 |Details
22 |Score
25 || 16 | | 17 | |
| 20 | | 21 | |
| 24 | | 25 | |
24 | The Code Dose
27 |@thecodedose
28 |...
33 |
19 | 233 views - 2 weeks ago
26 |
33 | The Code Dose
U/A 16+
29 |12 Seasons
30 |HD
31 |Quirky
34 | . 35 |Sitcom
36 | . 37 |Ensemble
38 |