The Code Dose
27 |@thecodedose
28 |├── .gitignore ├── README.md ├── challenges ├── flex │ ├── 1.md │ ├── 1.png │ ├── 2.md │ ├── 2.png │ ├── 3.md │ ├── 3.png │ ├── 4.md │ └── 4.png ├── grid │ ├── 1.md │ ├── 1.png │ ├── 2.md │ └── 2.png ├── position │ ├── 1.md │ ├── 1.png │ ├── 2.md │ ├── 2.png │ ├── 3.md │ ├── 3.png │ ├── 4.md │ ├── 4.png │ ├── 5.md │ └── 5.png ├── table │ ├── 1.md │ └── 1.png └── transform │ ├── 1.md │ └── 1.png └── solutions ├── flex ├── 1 │ ├── index.html │ ├── solution_image.png │ └── style.css ├── 2 │ ├── index.html │ ├── solution_image.png │ └── style.css ├── 3 │ ├── image.png │ ├── index.html │ ├── solution_image.png │ └── style.css └── 4 │ ├── icons │ ├── arrow.png │ ├── like.png │ ├── play-button.png │ └── plus.png │ ├── index.html │ ├── solution_image.png │ └── style.css ├── table └── 1 │ ├── Table-1-Solution-img.png │ ├── index.html │ └── style.css └── transform └── 1 ├── index.html ├── screemshot.PNG └── style.css /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # HTML & CSS Challenges 2 | 3 | A collection of beginner friendly practice exercises on HTML & CSS topics. 4 | 5 | All the challenges are present in the `challenges` directory. 6 | 7 | The solutions (coming soon) are provided in the ` solutions` directory. 8 | 9 | ## Guide to submitting solutions 10 | 11 | If you want to submit a solution for any challenge, please follow the below guidelines: 12 | 13 | - Place your solution code in the correct directory. 14 | For example, if you are submitting the solution for `challenges/flex/1.md`, the solution files should go inside `solutions/flex/1/`. 15 | - While submitting a pull request, please add screenshots of your results. 16 | - Please do not submit solutions if they already exist. 17 | -------------------------------------------------------------------------------- /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/04eeeb91b7bdd0ddfc17a7318bf69f757ab4a522/challenges/flex/1.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 | -------------------------------------------------------------------------------- /challenges/flex/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Code-Dose/html-css-challenges/04eeeb91b7bdd0ddfc17a7318bf69f757ab4a522/challenges/flex/2.png -------------------------------------------------------------------------------- /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/flex/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Code-Dose/html-css-challenges/04eeeb91b7bdd0ddfc17a7318bf69f757ab4a522/challenges/flex/3.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/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Code-Dose/html-css-challenges/04eeeb91b7bdd0ddfc17a7318bf69f757ab4a522/challenges/flex/4.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/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Code-Dose/html-css-challenges/04eeeb91b7bdd0ddfc17a7318bf69f757ab4a522/challenges/grid/1.png -------------------------------------------------------------------------------- /challenges/grid/2.md: -------------------------------------------------------------------------------- 1 | # Description 2 | 3 |  4 | 5 | Implement the above design using a grid for the 4X2 layout. 6 | -------------------------------------------------------------------------------- /challenges/grid/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Code-Dose/html-css-challenges/04eeeb91b7bdd0ddfc17a7318bf69f757ab4a522/challenges/grid/2.png -------------------------------------------------------------------------------- /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/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Code-Dose/html-css-challenges/04eeeb91b7bdd0ddfc17a7318bf69f757ab4a522/challenges/position/1.png -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /challenges/position/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Code-Dose/html-css-challenges/04eeeb91b7bdd0ddfc17a7318bf69f757ab4a522/challenges/position/2.png -------------------------------------------------------------------------------- /challenges/position/3.md: -------------------------------------------------------------------------------- 1 | # Description 2 | 3 |  4 | 5 | Implement this search box with a search logo at the left. 6 | -------------------------------------------------------------------------------- /challenges/position/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Code-Dose/html-css-challenges/04eeeb91b7bdd0ddfc17a7318bf69f757ab4a522/challenges/position/3.png -------------------------------------------------------------------------------- /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/position/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Code-Dose/html-css-challenges/04eeeb91b7bdd0ddfc17a7318bf69f757ab4a522/challenges/position/4.png -------------------------------------------------------------------------------- /challenges/position/5.md: -------------------------------------------------------------------------------- 1 | # Description 2 | 3 |  4 | 5 | Implement the given design of two overlapping boxes. 6 | -------------------------------------------------------------------------------- /challenges/position/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Code-Dose/html-css-challenges/04eeeb91b7bdd0ddfc17a7318bf69f757ab4a522/challenges/position/5.png -------------------------------------------------------------------------------- /challenges/table/1.md: -------------------------------------------------------------------------------- 1 | # Description 2 | 3 |  4 | 5 | Implement this table. 6 | -------------------------------------------------------------------------------- /challenges/table/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Code-Dose/html-css-challenges/04eeeb91b7bdd0ddfc17a7318bf69f757ab4a522/challenges/table/1.png -------------------------------------------------------------------------------- /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/transform/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Code-Dose/html-css-challenges/04eeeb91b7bdd0ddfc17a7318bf69f757ab4a522/challenges/transform/1.png -------------------------------------------------------------------------------- /solutions/flex/1/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 |SOTD
13 |Creator
16 |Font & Color
19 |Details
22 |Score
25 |The Code Dose
27 |@thecodedose
28 |...
33 |233 views - 2 weeks ago
26 |The Code Dose
U/A 16+
29 |12 Seasons
30 |HD
31 |Quirky
34 | . 35 |Sitcom
36 | . 37 |Ensemble
38 |16 | | 17 | |
20 | | 21 | |
24 | | 25 | |