├── Akash-Nath ├── Week_1 │ ├── Day_1 │ │ ├── dev.png │ │ └── q1.html │ ├── Day_2 │ │ ├── q1.html │ │ └── q2.html │ ├── Day_3 │ │ ├── brocolli.webp │ │ ├── cabbage.webp │ │ ├── potato.jpg │ │ ├── q1.html │ │ └── q2.html │ ├── Day_4 │ │ ├── q1.html │ │ └── q2.html │ ├── Day_5 │ │ ├── dev.png │ │ ├── q1.html │ │ └── q2.html │ ├── Day_6 │ │ ├── dev.png │ │ ├── q1.html │ │ └── q2.html │ └── Day_7 │ │ ├── q1.html │ │ └── q2.html └── Week_2 │ ├── Day_10 │ └── q1.html │ ├── Day_11 │ └── q1.html │ ├── Day_12 │ └── q1.html │ ├── Day_13 │ └── q1.html │ ├── Day_14 │ └── q1.html │ ├── Day_8 │ ├── dev.png │ ├── q1.html │ └── q2.html │ └── Day_9 │ └── q1.html ├── Baivab-Mukhopadhyay └── Week1 │ ├── Day 1 │ ├── 1.png │ └── Index.html │ ├── Day 2 │ └── index.html │ └── Day 3 │ ├── Screenshot 2023-09-03 200808.png │ ├── Screenshot 2023-09-21 190923.png │ ├── Screenshot 2023-09-29 210209.png │ └── index.html ├── Debjit_Adhikari ├── Week_1 │ ├── Day_1 │ │ ├── images.jpg │ │ └── index.html │ ├── Day_2 │ │ └── index.html │ ├── Day_3 │ │ ├── Oppo-K10-5G-scaled-1-768x768.jpg │ │ └── index.html │ ├── Day_4 │ │ └── index.html │ ├── Day_5 │ ├── Day_5_ │ │ ├── index.html │ │ └── style.css │ ├── Day_6 │ │ ├── chris.jpg │ │ ├── christian_bale.jpg │ │ ├── cillian.jpg │ │ ├── images.jpg │ │ ├── index.html │ │ ├── robert.webp │ │ ├── style.css │ │ └── walter.webp │ └── Day_7 │ │ ├── breakingBad.jpg │ │ ├── got.jpg │ │ ├── index.html │ │ ├── lcdp.jpg │ │ ├── style.css │ │ ├── tvd.jpg │ │ └── viking.jpg └── Week_2 │ ├── Day_1 │ ├── images.jpg │ ├── index.html │ └── script.js │ ├── Day_2 │ ├── index.html │ ├── script.js │ └── style.css │ ├── Day_3 │ ├── index.html │ ├── script.js │ └── style.css │ ├── Day_4 │ ├── cat.jpg │ ├── default.jpg │ ├── dog.jpg │ ├── index.html │ ├── script.js │ └── style.css │ ├── Day_5 │ ├── index.html │ └── style.css │ ├── Day_6 │ ├── index.html │ └── script.js │ └── Day_7 │ ├── index.html │ ├── script.js │ └── style.css ├── Ekram zafar └── week1 ├── LICENSE ├── Piyush └── Week_1 │ ├── Day_1 │ └── q1.html │ ├── Day_2 │ ├── q1.html │ └── q2.html │ ├── Day_3 │ └── q1.html │ └── Day_4 │ └── q1.html ├── Questions ├── Week1.md └── Week2.md ├── README.md ├── Rupam └── Week1 │ ├── Day1 │ └── qs1.html │ ├── Day2 │ ├── q1.html │ └── q2.html │ ├── Day3 │ ├── q1.html │ └── q2.html │ ├── Day4 │ ├── q1 │ │ ├── about.html │ │ ├── contact.html │ │ ├── education.html │ │ ├── index.html │ │ └── q1.html │ └── q2 │ │ └── q2.html │ ├── Day5 │ ├── q1 │ │ ├── day1qs1.html │ │ └── qs1.css │ └── q2 │ │ ├── day5q2.css │ │ └── day5q2.html │ └── Day6 │ ├── q1 │ ├── day6qs1.css │ └── day6qs1.html │ └── q2 │ ├── day6qs2.css │ └── day6qs2.html └── Tuhin_Poddar ├── .vscode └── settings.json ├── Week_1 ├── .vscode │ └── settings.json ├── Day_1 │ ├── q1.html │ └── q1_image.png ├── Day_2 │ ├── q1.html │ ├── q2.css │ └── q2.html ├── Day_3 │ ├── Product_Images │ │ ├── Product_1.jpg │ │ ├── Product_2.jpg │ │ └── Product_3.jpg │ ├── q1.css │ └── q1.html ├── Day_4 │ ├── q1.css │ └── q1.html ├── Day_5 │ ├── q1.css │ ├── q1.html │ └── q1_image.png ├── Day_6 │ ├── q1.css │ ├── q1.html │ ├── q2.css │ └── q2.html └── Day_7 │ ├── q1.css │ └── q1.html └── Week_2 ├── Day_10 ├── .hintrc ├── q1.css ├── q1.html └── q1.js ├── Day_11 ├── img1.jfif ├── img2.jfif ├── q1.html └── q1.js ├── Day_12 ├── q1.css └── q1.html ├── Day_8 ├── q1.html ├── q1.js └── q1_image.png └── Day_9 └── q1.html /Akash-Nath/Week_1/Day_1/dev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevDotCommunity/WebCraftersCorner/f7050b6a729e3e849ae71730ab03c06838071c64/Akash-Nath/Week_1/Day_1/dev.png -------------------------------------------------------------------------------- /Akash-Nath/Week_1/Day_1/q1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | Simple page 9 | 10 | 11 |

Heading 1

12 |

I don't know what should I write, but still...

13 | Some Image 14 | 15 | -------------------------------------------------------------------------------- /Akash-Nath/Week_1/Day_2/q1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Simple Page 8 | 9 | 10 |

Top 5 movies/series

11 |
    12 |
  1. Interstellar
  2. 13 |
  3. Loki
  4. 14 |
  5. Avengers Endgame
  6. 15 |
  7. Avengers Infinity War
  8. 16 |
  9. Avengers (2012)
  10. 17 |
18 |

Top 5 books

19 |
    20 |
  1. Rich Dad Poor Dad
  2. 21 |
  3. Think And Grow Rich
  4. 22 |
  5. Ikigai
  6. 23 |
  7. Main books nhi padhta :)
  8. 24 |
  9. Kuchh nhi pata kya likhna hai mujhe :')
  10. 25 |
26 | 27 | -------------------------------------------------------------------------------- /Akash-Nath/Week_1/Day_2/q2.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Simple Page 8 | 9 | 10 |

Registration of Agreement of Slavery :)

11 |
12 | 13 | 14 | 15 |
16 |

I know it's a bit odd to place an email field for Registration of Agreement of Slavery, but ultimately we do work for others, in other word we do slavery. :)

17 | 18 | -------------------------------------------------------------------------------- /Akash-Nath/Week_1/Day_3/brocolli.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevDotCommunity/WebCraftersCorner/f7050b6a729e3e849ae71730ab03c06838071c64/Akash-Nath/Week_1/Day_3/brocolli.webp -------------------------------------------------------------------------------- /Akash-Nath/Week_1/Day_3/cabbage.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevDotCommunity/WebCraftersCorner/f7050b6a729e3e849ae71730ab03c06838071c64/Akash-Nath/Week_1/Day_3/cabbage.webp -------------------------------------------------------------------------------- /Akash-Nath/Week_1/Day_3/potato.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevDotCommunity/WebCraftersCorner/f7050b6a729e3e849ae71730ab03c06838071c64/Akash-Nath/Week_1/Day_3/potato.jpg -------------------------------------------------------------------------------- /Akash-Nath/Week_1/Day_3/q1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | Simple Page 9 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 |
Product NameProduct PriceProduct Description
DeadBody No.1$ 150 millionJust dead, heart is still pumping blood, you have to buy head seperately.
DeadBody No.2$ 50 millionPreserved Body for 5 days, heart is still in good condition,liver is completely damaged by alcoholic infections, Lung damaged due to lack of oxygen.
DeadBody No.3$ 200 million5 years old body, everything is in perfect condition, bullet wond in intestines.
39 | 40 | -------------------------------------------------------------------------------- /Akash-Nath/Week_1/Day_3/q2.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Simple Page 8 | 14 | 15 | 16 |

Now I can't do the same stuffs here in order to add images. So here's a vegitable lists. I gurantee you won't enjoy as much as before

17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 |
Product NameProduct PriceProduct Image
Brocolli₹41.16brocolli
Cabbage₹18.00cabbage
Potato₹28.00Potato
39 | 40 | -------------------------------------------------------------------------------- /Akash-Nath/Week_1/Day_4/q1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Simple Page 8 | 36 | 37 | 38 | 47 | 48 | -------------------------------------------------------------------------------- /Akash-Nath/Week_1/Day_4/q2.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | simple page 8 | 96 | 97 | 98 | 107 |
108 |
109 |

Hii, welcome to page

110 |
111 |
112 |

I am supposed to write about, but company didn't pay me well, so I'm not gonna write any :)

113 |
114 |
115 |

My projects

116 | 123 | Find out more 124 |
125 |
126 |

Here are some ways to contact me

127 | Portfolio 128 | Instagram 129 | Github 130 | Linkedin 131 |
132 |
133 | 134 | -------------------------------------------------------------------------------- /Akash-Nath/Week_1/Day_5/dev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevDotCommunity/WebCraftersCorner/f7050b6a729e3e849ae71730ab03c06838071c64/Akash-Nath/Week_1/Day_5/dev.png -------------------------------------------------------------------------------- /Akash-Nath/Week_1/Day_5/q1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Simple page 8 | 15 | 16 | 17 |

Heading 1

18 |

I don't know what should I write, but still...

19 | Some Image 20 | 21 | -------------------------------------------------------------------------------- /Akash-Nath/Week_1/Day_5/q2.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Simple page 8 | 24 | 25 | 26 |

Heading 1

27 |

I don't know what should I write, but still...

28 |
    29 |
  1. Coffee
  2. 30 |
  3. Cold Coffee
  4. 31 |
  5. More Cold Coffee
  6. 32 |
  7. Frozen Coffee
  8. 33 |
34 | Some Image 35 | 36 | -------------------------------------------------------------------------------- /Akash-Nath/Week_1/Day_6/dev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevDotCommunity/WebCraftersCorner/f7050b6a729e3e849ae71730ab03c06838071c64/Akash-Nath/Week_1/Day_6/dev.png -------------------------------------------------------------------------------- /Akash-Nath/Week_1/Day_6/q1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Simple page 8 | 23 | 24 | 25 |
26 | Dev Icon 27 |
28 | 29 | -------------------------------------------------------------------------------- /Akash-Nath/Week_1/Day_6/q2.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Simple Page 8 | 27 | 28 | 29 |

Registration of Agreement of Slavery :)

30 |
31 | 32 | 33 | 34 |
35 |

I know it's a bit odd to place an email field for Registration of Agreement of Slavery, but ultimately we do work for others, in other word we do slavery. :)

36 | 37 | -------------------------------------------------------------------------------- /Akash-Nath/Week_1/Day_7/q1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Simple Page 8 | 29 | 30 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /Akash-Nath/Week_1/Day_7/q2.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Simple Page 8 | 40 | 41 | 42 | 51 | 52 | -------------------------------------------------------------------------------- /Akash-Nath/Week_2/Day_10/q1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Simple Page 8 | 9 | 10 |

Registration of Agreement of Slavery :)

11 |
12 | 13 | 14 | 15 |
16 |

I know it's a bit odd to place an email field for Registration of Agreement of Slavery, but ultimately we do work for others, in other word we do slavery. :)

17 | 18 | -------------------------------------------------------------------------------- /Akash-Nath/Week_2/Day_11/q1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Simple Page 8 | 9 | 10 | 11 | 12 |

Hello

13 | 20 | 21 | -------------------------------------------------------------------------------- /Akash-Nath/Week_2/Day_12/q1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Responsive 8 | 42 | 43 | 44 |
45 |
46 |

Responsive

47 |
48 |
49 | 50 | -------------------------------------------------------------------------------- /Akash-Nath/Week_2/Day_13/q1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Simple Page 8 | 9 | 10 |

Registration of Agreement of Slavery :)

11 |
12 | 13 | 14 | 15 |
16 | 29 | 30 | -------------------------------------------------------------------------------- /Akash-Nath/Week_2/Day_14/q1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 44 | Simple Page 45 | 46 | 47 |

Click the ball

48 |
49 |
50 |
51 |

Score: 0

52 |

Time: 5 seconds

53 | 54 | 118 | 119 | 120 | -------------------------------------------------------------------------------- /Akash-Nath/Week_2/Day_8/dev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevDotCommunity/WebCraftersCorner/f7050b6a729e3e849ae71730ab03c06838071c64/Akash-Nath/Week_2/Day_8/dev.png -------------------------------------------------------------------------------- /Akash-Nath/Week_2/Day_8/q1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | Simple page 9 | 10 | 11 |

Heading 1

12 |

I don't know what should I write, but still...

13 | Some Image
14 | 15 | 16 | -------------------------------------------------------------------------------- /Akash-Nath/Week_2/Day_8/q2.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Simple Page 8 | 36 | 37 | 38 |
39 | 40 | 41 | 42 |
43 |

44 |
45 | 52 | 53 | -------------------------------------------------------------------------------- /Akash-Nath/Week_2/Day_9/q1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 30 | Simple Page 31 | 32 | 33 | 34 |
35 |
36 | 37 | 38 | 39 | 40 | 41 |

42 | 43 |

44 |
45 | 46 |
47 |
48 | 69 | 70 | 71 | -------------------------------------------------------------------------------- /Baivab-Mukhopadhyay/Week1/Day 1/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevDotCommunity/WebCraftersCorner/f7050b6a729e3e849ae71730ab03c06838071c64/Baivab-Mukhopadhyay/Week1/Day 1/1.png -------------------------------------------------------------------------------- /Baivab-Mukhopadhyay/Week1/Day 1/Index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | My Simple HTML Page 7 | 8 | 9 |

My Heading

10 |

This is a paragraph of text.

11 | My Image 12 | 13 | 14 | -------------------------------------------------------------------------------- /Baivab-Mukhopadhyay/Week1/Day 2/index.html: -------------------------------------------------------------------------------- 1 | 2 |
    3 |
  1. The Lord of the Rings
  2. 4 |
  3. The Shawshank Redemption
  4. 5 |
  5. The Godfather
  6. 6 |
  7. The Dark Knight
  8. 7 |
  9. The Matrix
  10. 8 |
9 | 10 | 11 |
12 | 13 |

14 | 15 |

16 | 17 |
18 | -------------------------------------------------------------------------------- /Baivab-Mukhopadhyay/Week1/Day 3/Screenshot 2023-09-03 200808.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevDotCommunity/WebCraftersCorner/f7050b6a729e3e849ae71730ab03c06838071c64/Baivab-Mukhopadhyay/Week1/Day 3/Screenshot 2023-09-03 200808.png -------------------------------------------------------------------------------- /Baivab-Mukhopadhyay/Week1/Day 3/Screenshot 2023-09-21 190923.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevDotCommunity/WebCraftersCorner/f7050b6a729e3e849ae71730ab03c06838071c64/Baivab-Mukhopadhyay/Week1/Day 3/Screenshot 2023-09-21 190923.png -------------------------------------------------------------------------------- /Baivab-Mukhopadhyay/Week1/Day 3/Screenshot 2023-09-29 210209.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevDotCommunity/WebCraftersCorner/f7050b6a729e3e849ae71730ab03c06838071c64/Baivab-Mukhopadhyay/Week1/Day 3/Screenshot 2023-09-29 210209.png -------------------------------------------------------------------------------- /Baivab-Mukhopadhyay/Week1/Day 3/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 |
Product NamePriceDescriptionImage
Product 1$10.00Description of product 1Product 1
Product 2$20.00Description of product 2Product 2
Product 3$30.00Description of product 3Product 3
32 | -------------------------------------------------------------------------------- /Debjit_Adhikari/Week_1/Day_1/images.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevDotCommunity/WebCraftersCorner/f7050b6a729e3e849ae71730ab03c06838071c64/Debjit_Adhikari/Week_1/Day_1/images.jpg -------------------------------------------------------------------------------- /Debjit_Adhikari/Week_1/Day_1/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Document 7 | 8 | 9 |

My webpage

10 |

Hello, everyone welcome to my simple webpage. 11 | By creating this simple webpage I've finished my Day 1 challenge. 12 |

13 | 14 |

Here is Mr. Walter White.

15 | 16 | 17 | -------------------------------------------------------------------------------- /Debjit_Adhikari/Week_1/Day_2/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Document 7 | 8 | 9 |

My favourite books & movies.

10 | 30 |
31 |
32 |
33 |
34 |
35 | Male
36 | Female
37 | Prefer not to say
38 | 39 | 40 |
41 | 42 | 43 | -------------------------------------------------------------------------------- /Debjit_Adhikari/Week_1/Day_3/Oppo-K10-5G-scaled-1-768x768.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevDotCommunity/WebCraftersCorner/f7050b6a729e3e849ae71730ab03c06838071c64/Debjit_Adhikari/Week_1/Day_3/Oppo-K10-5G-scaled-1-768x768.jpg -------------------------------------------------------------------------------- /Debjit_Adhikari/Week_1/Day_3/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Document 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 |
Product namePriceDescription
Oppo$34It has 8GB ram with 5000mAh battery
Redmi 8$16Comes with 4GB ram and 64GB storage
Realme 9$20It comes with 64mp dual camera
33 | 34 | 35 | 36 | -------------------------------------------------------------------------------- /Debjit_Adhikari/Week_1/Day_4/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Document 7 | 8 | 9 |

My favourite TV series:

10 |

Here are some of my favourites. Click any of these for more information

11 | 18 |
19 | 32 |
33 | 34 | 35 | 36 | -------------------------------------------------------------------------------- /Debjit_Adhikari/Week_1/Day_5: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Debjit_Adhikari/Week_1/Day_5_/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Document 7 | 8 | 9 | 10 |

Vitamins for Health

11 |

Vitamins help your body grow and work the way it should. There are 13 essential vitamins — vitamins A, C, D, E, K, and the B vitamins (thiamine, riboflavin, niacin, pantothenic acid, biotin, B6, B12, and folate).

12 |

Here are some helpful source to get Vitamins and minerals :

13 | 48 | 49 | -------------------------------------------------------------------------------- /Debjit_Adhikari/Week_1/Day_5_/style.css: -------------------------------------------------------------------------------- 1 | body{ 2 | background-image: linear-gradient(45deg,rgb(167, 245, 167),rgb(164, 226, 250)); 3 | } 4 | h1{ 5 | color: red; 6 | text-shadow: 0 0 20px blue,0 0 20px violet; 7 | 8 | } 9 | p{ 10 | font-size: 15px; 11 | font-family:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; 12 | font-style: italic; 13 | text-shadow: 0 0 20px red; 14 | } 15 | .vitamin{ 16 | color:blue; 17 | font-weight: bold; 18 | margin-bottom: 20px; 19 | } 20 | ol{ 21 | color: red; 22 | font-style: italic; 23 | } -------------------------------------------------------------------------------- /Debjit_Adhikari/Week_1/Day_6/chris.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevDotCommunity/WebCraftersCorner/f7050b6a729e3e849ae71730ab03c06838071c64/Debjit_Adhikari/Week_1/Day_6/chris.jpg -------------------------------------------------------------------------------- /Debjit_Adhikari/Week_1/Day_6/christian_bale.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevDotCommunity/WebCraftersCorner/f7050b6a729e3e849ae71730ab03c06838071c64/Debjit_Adhikari/Week_1/Day_6/christian_bale.jpg -------------------------------------------------------------------------------- /Debjit_Adhikari/Week_1/Day_6/cillian.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevDotCommunity/WebCraftersCorner/f7050b6a729e3e849ae71730ab03c06838071c64/Debjit_Adhikari/Week_1/Day_6/cillian.jpg -------------------------------------------------------------------------------- /Debjit_Adhikari/Week_1/Day_6/images.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevDotCommunity/WebCraftersCorner/f7050b6a729e3e849ae71730ab03c06838071c64/Debjit_Adhikari/Week_1/Day_6/images.jpg -------------------------------------------------------------------------------- /Debjit_Adhikari/Week_1/Day_6/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Document 7 | 8 | 9 | 10 | 11 | 12 | 13 |

Famous celebrities

14 |

Hello, welcome to my simple webpage. 15 | Here I'm gonna show you some of my famous celebrities. 16 |

17 |
18 | 19 |

Christian Bale

20 |

Christian Charles Philip Bale is an English actor. Known for his versatility and physical transformations for his roles, he has been a leading man in films of several genres. He has received various accolades, including an Academy Award and two Golden Globe Awards.

21 |
22 |
23 | 24 |

Bryan Cranston

25 |

Aka Mr. Walter White. He never stays in danger, cause he is the danger :)

26 | 27 |
28 |
29 | 30 |

Robert Pattinson

31 |

Robert Douglas Thomas Pattinson is an English actor. Known for starring in both big-budget and independent films, Pattinson has ranked among the world's highest-paid actors. In 2010, Time magazine named him one of the 100 most influential people in the world, and he was featured in the Forbes Celebrity 100 list.

32 | 33 |
34 |
35 | 36 |

Cillian Murphy

37 |

Cillian Murphy is an Irish actor. He made his professional debut in Enda Walsh's 1996 play Disco Pigs, a role he later reprised in the 2001 screen adaptation.

38 | 39 |
40 |
41 | 42 |

Chris Evans

43 |

Christopher Robert Evans is an American actor. He began his career with roles in television series such as Opposite Sex in 2000.

44 | 45 |
46 | 47 | 48 | -------------------------------------------------------------------------------- /Debjit_Adhikari/Week_1/Day_6/robert.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevDotCommunity/WebCraftersCorner/f7050b6a729e3e849ae71730ab03c06838071c64/Debjit_Adhikari/Week_1/Day_6/robert.webp -------------------------------------------------------------------------------- /Debjit_Adhikari/Week_1/Day_6/style.css: -------------------------------------------------------------------------------- 1 | h1{ 2 | color:rgb(31, 21, 6); 3 | font-family: "Play"; 4 | font-weight: 400px; 5 | 6 | } 7 | body{ 8 | background-image:linear-gradient(20deg, white,rgba(135, 207, 235, 0.628),rgba(255, 255, 0, 0.45),white); 9 | } 10 | p{ 11 | color:rgb(7, 40, 63); 12 | font-size: 20px; 13 | font-family:Arial, Helvetica, sans-serif; 14 | 15 | } 16 | img{ 17 | border: 1px solid black; 18 | display: block; 19 | margin-left: auto; 20 | margin-right: auto; 21 | height: 200px; 22 | margin-top: 20px; 23 | 24 | } 25 | div{ 26 | margin-bottom: 200px; 27 | display: flex; 28 | flex-direction: column; 29 | border-top: 1px solid rgb(104, 64, 5); 30 | 31 | } 32 | #name{ 33 | color: black; 34 | font-weight: bold; 35 | text-align: center; 36 | } 37 | body{ 38 | margin-right: 0px; 39 | } -------------------------------------------------------------------------------- /Debjit_Adhikari/Week_1/Day_6/walter.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevDotCommunity/WebCraftersCorner/f7050b6a729e3e849ae71730ab03c06838071c64/Debjit_Adhikari/Week_1/Day_6/walter.webp -------------------------------------------------------------------------------- /Debjit_Adhikari/Week_1/Day_7/breakingBad.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevDotCommunity/WebCraftersCorner/f7050b6a729e3e849ae71730ab03c06838071c64/Debjit_Adhikari/Week_1/Day_7/breakingBad.jpg -------------------------------------------------------------------------------- /Debjit_Adhikari/Week_1/Day_7/got.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevDotCommunity/WebCraftersCorner/f7050b6a729e3e849ae71730ab03c06838071c64/Debjit_Adhikari/Week_1/Day_7/got.jpg -------------------------------------------------------------------------------- /Debjit_Adhikari/Week_1/Day_7/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Document 7 | 8 | 9 | 10 | 11 |

My favourite TV series:

12 |

Here are some of my favourites. Navigate through any of these for more information

13 | 20 |
21 | 41 |
42 |

If you've already watched these series then I'm happy that we have same taste in movies & series :)
If you want to get updates from me, then fill the forms. I'll see you there ;-)

43 |
44 |
45 |
46 |
47 |
48 |
49 | 50 | 51 | 52 |
53 | 54 | 55 | -------------------------------------------------------------------------------- /Debjit_Adhikari/Week_1/Day_7/lcdp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevDotCommunity/WebCraftersCorner/f7050b6a729e3e849ae71730ab03c06838071c64/Debjit_Adhikari/Week_1/Day_7/lcdp.jpg -------------------------------------------------------------------------------- /Debjit_Adhikari/Week_1/Day_7/style.css: -------------------------------------------------------------------------------- 1 | body{ 2 | background-image: linear-gradient(45deg,grey,rgba(240, 240, 121, 0.637),pink,darkgray,pink,rgba(230, 230, 110, 0.763)); 3 | } 4 | h1{ 5 | font-weight: bold; 6 | 7 | } 8 | img{ 9 | height: 300px; 10 | width: 250px; 11 | margin-left: 25%; 12 | border: 2px solid goldenrod; 13 | } 14 | h2{ 15 | font-weight: 200px; 16 | color: brown; 17 | font-family: "Playfair Display"; 18 | } 19 | p{ 20 | font-size: 15px; 21 | font-family: sans-serif; 22 | font-style:italic; 23 | } 24 | a{ 25 | font-size: 25px; 26 | text-decoration: none; 27 | } 28 | form{ 29 | margin-left: 20px; 30 | 31 | } 32 | #name{ 33 | margin-bottom:5px; 34 | 35 | } 36 | label{ 37 | font-size: 20px; 38 | 39 | } 40 | button{ 41 | font-size: 15px; 42 | margin-top: 20px; 43 | margin-bottom: 20px; 44 | border-radius: 10px; 45 | height: 30px; 46 | width: 70px; 47 | border:1px solid; 48 | } 49 | 50 | a:hover{ 51 | color:white; 52 | font-size: 23px; 53 | background-color:grey; 54 | text-decoration: none; 55 | } 56 | button:hover{ 57 | background-color:gray; 58 | height:25px; 59 | width: 67px; 60 | color:aliceblue; 61 | border: 1px solid black 62 | } 63 | -------------------------------------------------------------------------------- /Debjit_Adhikari/Week_1/Day_7/tvd.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevDotCommunity/WebCraftersCorner/f7050b6a729e3e849ae71730ab03c06838071c64/Debjit_Adhikari/Week_1/Day_7/tvd.jpg -------------------------------------------------------------------------------- /Debjit_Adhikari/Week_1/Day_7/viking.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevDotCommunity/WebCraftersCorner/f7050b6a729e3e849ae71730ab03c06838071c64/Debjit_Adhikari/Week_1/Day_7/viking.jpg -------------------------------------------------------------------------------- /Debjit_Adhikari/Week_2/Day_1/images.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevDotCommunity/WebCraftersCorner/f7050b6a729e3e849ae71730ab03c06838071c64/Debjit_Adhikari/Week_2/Day_1/images.jpg -------------------------------------------------------------------------------- /Debjit_Adhikari/Week_2/Day_1/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Document 7 | 8 | 9 |

My webpage

10 |

Hello, everyone welcome to my simple webpage. 11 |

12 | 13 |

Here is Mr. Walter White.

14 | 15 | 16 | -------------------------------------------------------------------------------- /Debjit_Adhikari/Week_2/Day_1/script.js: -------------------------------------------------------------------------------- 1 | alert("Allright, Let's get started"); 2 | let name1=prompt("What's your name?"); 3 | let age=prompt("How old are you?"); 4 | let dob=2023-Number(age); 5 | console.log(`Hey there ${name1} you are ${age} years old, that means you born in ${dob}`); -------------------------------------------------------------------------------- /Debjit_Adhikari/Week_2/Day_2/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Document 7 | 8 | 9 | 10 |

Area of a rectangle

11 |

Enter the details:

12 |
13 |

Enter the length

14 | 15 |
16 |
17 |

Enter the width

18 | 19 |
20 | 21 |
22 |

Result: 0cm

23 |
24 | 25 | 26 | -------------------------------------------------------------------------------- /Debjit_Adhikari/Week_2/Day_2/script.js: -------------------------------------------------------------------------------- 1 | document.querySelector("button").addEventListener("click",pressed); 2 | function pressed(){ 3 | let ans=document.querySelector("#length").value*document.querySelector("#width").value; 4 | document.querySelector("span").textContent=ans; 5 | } -------------------------------------------------------------------------------- /Debjit_Adhikari/Week_2/Day_2/style.css: -------------------------------------------------------------------------------- 1 | body{ 2 | background-color:blanchedalmond; 3 | } 4 | input{ 5 | margin-bottom: 5px; 6 | } 7 | .dimension p{ 8 | margin-bottom: 0px; 9 | } 10 | 11 | button:hover{ 12 | background-color: rgba(222, 184, 135, 0.589); 13 | 14 | border: 1px solid; 15 | } -------------------------------------------------------------------------------- /Debjit_Adhikari/Week_2/Day_3/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Document 7 | 8 | 9 | 10 |

Click the button to get alert👇👇

11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /Debjit_Adhikari/Week_2/Day_3/script.js: -------------------------------------------------------------------------------- 1 | document.querySelector("button").addEventListener("click",function(){ 2 | alert("You clicked the button"); 3 | }) -------------------------------------------------------------------------------- /Debjit_Adhikari/Week_2/Day_3/style.css: -------------------------------------------------------------------------------- 1 | body{ 2 | background-color:rgba(178, 237, 61, 0.539) 3 | } 4 | button{ 5 | margin-top: 10px; 6 | margin-left: 220px; 7 | border-radius: 20px; 8 | border:1px solid; 9 | height: 25px; 10 | box-shadow: 4px 3px 5px rgb(255, 132, 0) ; 11 | } 12 | button:hover{ 13 | height: 24px; 14 | background-color: rgb(45, 45, 25); 15 | color: whitesmoke; 16 | } -------------------------------------------------------------------------------- /Debjit_Adhikari/Week_2/Day_4/cat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevDotCommunity/WebCraftersCorner/f7050b6a729e3e849ae71730ab03c06838071c64/Debjit_Adhikari/Week_2/Day_4/cat.jpg -------------------------------------------------------------------------------- /Debjit_Adhikari/Week_2/Day_4/default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevDotCommunity/WebCraftersCorner/f7050b6a729e3e849ae71730ab03c06838071c64/Debjit_Adhikari/Week_2/Day_4/default.jpg -------------------------------------------------------------------------------- /Debjit_Adhikari/Week_2/Day_4/dog.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevDotCommunity/WebCraftersCorner/f7050b6a729e3e849ae71730ab03c06838071c64/Debjit_Adhikari/Week_2/Day_4/dog.jpg -------------------------------------------------------------------------------- /Debjit_Adhikari/Week_2/Day_4/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Document 7 | 8 | 9 | 10 |

Paragraph of animals

11 |

Click on any of these button

12 |
13 | 14 | 15 |
16 |
17 |
18 | 19 |

Default

20 |
21 |

Nothing to show here. You haven't clicked any buttons :( cause if you have then this text wouldn't been shown here.

22 |
23 | 24 | 25 | -------------------------------------------------------------------------------- /Debjit_Adhikari/Week_2/Day_4/script.js: -------------------------------------------------------------------------------- 1 | let c=0; 2 | let d=0; 3 | let img=document.querySelector("img"); 4 | let imgName=document.querySelector("#image > p"); 5 | let imgAbout=document.querySelector(".details > p"); 6 | 7 | 8 | document.querySelector("#cat").addEventListener("click",function(){ 9 | 10 | setAllDetails("cat.jpg","Cat", 11 | "The cat (Felis catus), commonly referred to as the domestic cat or house cat, is the only domesticated species in the family Felidae. Recent advances in archaeology and genetics have shown that the domestication of the cat occurred in the Near East around 7500 BC. It is commonly kept as a house pet and farm cat, but also ranges freely as a feral cat avoiding human contact." 12 | ); 13 | 14 | 15 | }); 16 | 17 | document.querySelector("#dog").addEventListener("click",function(){ 18 | 19 | setAllDetails("dog.jpg","Dog", 20 | "Dog, (Canis lupus familiaris), domestic mammal of the family Canidae (order Carnivora). It is a subspecies of the gray wolf (Canis lupus) and is related to foxes and jackals. The dog is one of the two most ubiquitous and most popular domestic animals in the world (the cat is the other). For more than 12,000 years it has lived with humans as a hunting companion, protector, object of scorn or adoration, and friend." 21 | ); 22 | 23 | }); 24 | 25 | function setAllDetails(imgContent,imgTitle,imgDetails){ 26 | img.src=imgContent; 27 | imgName.textContent=imgTitle; 28 | imgAbout.textContent=imgDetails; 29 | } -------------------------------------------------------------------------------- /Debjit_Adhikari/Week_2/Day_4/style.css: -------------------------------------------------------------------------------- 1 | body{ 2 | background-color: rgb(224, 123, 157); 3 | } 4 | h1{ 5 | color: rgb(240, 233, 225); 6 | font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif; 7 | font-style: italic; 8 | } 9 | img{ 10 | width: 250px; 11 | height: 200px; 12 | } 13 | p{ 14 | color: white; 15 | font-style: italic; 16 | 17 | } 18 | .details{ 19 | margin-top: 60px; 20 | display: flex; 21 | flex-direction: column; 22 | justify-content: center; 23 | align-items: center; 24 | } 25 | #image>p{ 26 | text-align: center; 27 | font-style: normal; 28 | } 29 | button{ 30 | margin-right: 30px; 31 | border-radius: 20px; 32 | height: 30px; 33 | width: 60px; 34 | color:white; 35 | background-color: rgb(0, 140, 255); 36 | border:1px solid rgb(0, 187, 255); 37 | font-weight: bold; 38 | } 39 | 40 | button:hover{ 41 | width: 58px; 42 | height: 29px; 43 | background-color: white; 44 | color: rgb(22, 150, 230); 45 | border: 0px; 46 | } -------------------------------------------------------------------------------- /Debjit_Adhikari/Week_2/Day_5/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Document 7 | 8 | 9 | 10 |

Flowers

11 |

A flower, also known as a bloom or blossom, is the reproductive structure found in flowering plants (plants of the division Angiospermae). Flowers consist of a combination of vegetative organs – sepals that enclose and protect the developing flower, petals that attract pollinators, and reproductive organs that produce gametophytes, which in flowering plants produce gametes. The male gametophytes, which produce sperm, are enclosed within pollen grains produced in the anthers. The female gametophytes are contained within the ovules produced in the carpels.

12 |
13 |
14 |

Rose

15 |

Like the flower itself, the history of the rose is very colorful. Roses have been naturally growing for over 35 million years! However, they were not known to be cultivated until about 5,000 years ago. Their usage began not just as a decorative touch to one’s home, but they were also used for medicinal purposes and to make perfumes, and their petals were even used as confetti for festive occasions. Getting your roses into water quickly is the first step in caring for them. Fill a vase three-fourths full of fresh, cool tap water. The roses will absorb the water, soaking up the nutrients that will travel up to the bloom and create a lively flower. Check the water level in your rose’s vase every day and add more water as needed. Shop these classic flowers for Valentine’s Day!

16 |
17 |
18 |

Sunflowers

19 |

Sunflowers are one of the most popular flower types and are best known for their dazzling yellow color and large size. They generally symbolize adoration, loyalty, and longevity in the language of flowers. Native Americans view sunflowers as a symbol of harvest and bounty since the flower provides seeds and pigments, in addition to being visually beautiful. Sunflowers need direct sunlight for six to eight hours per day and require hot conditions to flower well. Sunflowers also have long roots that require plenty of room to spread out, so soil should be well dug and not too dense for growth. Avoid over-fertilization or risk your stems breaking in the fall. In addition to being great in a garden, sunflowers make great gifts and look wonderful in bouquets.

20 |
21 |
22 |

Hydrangea

23 |

You know summer is here when big, showy hydrangea bushes begin gracing gardens across the country. This perennial, a native of East Asia and the Americas, comprises more than 75 species and 600 cultivated varieties, of which mophead, lacecap, oakleaf, and peegee are the most common. Some hydrangea flowers can turn a pretty pink or blue depending on the acidity or alkalinity of the soil, while others will remain white. Mopheads, lacecaps, and oakleafs bloom on the previous year’s wood and can be pruned in the summer after flowering; peegees bloom on this year’s wood and can be pruned in the late winter, before the new spring growth.

24 |
25 |
26 |

Lavander

27 |

Spanish, French, or English lavender are sweet herb garden favorites that provide soothing fragrances, flavorings, and beauty all together in little floral packages. More than 40 species are native to areas surrounding the Mediterranean and are semi-evergreen perennials or sub-shrubs with gray-green, hairy, linear leaves and purple, violet, lavender, or pinkish-white flowers. Tiny glands on the flowers, leaves, and stems of the plant produce the scented oil that is used in perfumes, bath preparations, lavender water, and in aromatherapy to relieve stress and anxiety and bring about sleep. Lavender is also prized as a flavoring in cooking, as an ingredient in teas, and for a monofloral honey.

28 |
29 |
30 | 31 | -------------------------------------------------------------------------------- /Debjit_Adhikari/Week_2/Day_5/style.css: -------------------------------------------------------------------------------- 1 | body{ 2 | background-color: rgb(232, 158, 105); 3 | } 4 | .typeFlower div{ 5 | width: 500px; 6 | display: inline-block; 7 | margin-right: 40px; 8 | } 9 | @media(max-width:550px){ 10 | .typeFlower div{ 11 | width:150px; 12 | } 13 | } 14 | @media(min-width:551px) and (max-width:749px){ 15 | .typeFlower div{ 16 | width: 200px; 17 | 18 | } 19 | } 20 | @media(min-width:750px) and (max-width:1100px){ 21 | .typeFlower div{ 22 | width: 300px; 23 | } 24 | } 25 | 26 | @media(min-width:1101px) and (max-width: 1300px){ 27 | .typeFlower div{ 28 | width:700px; 29 | } 30 | } -------------------------------------------------------------------------------- /Debjit_Adhikari/Week_2/Day_6/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Document 7 | 8 | 9 | 10 |
11 |
12 |
13 | 14 |
15 |
16 | 17 | 18 | 19 |
20 | 21 | 22 | -------------------------------------------------------------------------------- /Debjit_Adhikari/Week_2/Day_6/script.js: -------------------------------------------------------------------------------- 1 | let emailLast="@gmail.com"; 2 | 3 | document.querySelector("button").addEventListener("click",function(){ 4 | let name1=document.querySelector("#name").value; 5 | let email=document.querySelector("#email").value; 6 | if(name1===""){ 7 | alert("Name is empty."); 8 | } 9 | let emailSlice=email.slice(email.length-10,email.length+2); 10 | if(emailSlice!=emailLast){ 11 | alert("Email not valid"); 12 | } 13 | }); 14 | -------------------------------------------------------------------------------- /Debjit_Adhikari/Week_2/Day_7/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Guess the number 7 | 8 | 9 | 10 | 14 | 15 | 16 |
17 |

Guess the number

18 |

(between 1-20)

19 |
?
20 |
21 |
22 |
23 | 24 | 25 |
26 |
27 |

Start guessing...

28 |

💯Score: 20

29 |

🏆Highscore: 0

30 |
31 |
32 |
33 | 34 |
35 | 36 | 37 | 38 | -------------------------------------------------------------------------------- /Debjit_Adhikari/Week_2/Day_7/script.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | let computer = getRandom(); 3 | let score = 20; 4 | let highscore = 0; 5 | let end = false; 6 | let value; 7 | 8 | document.querySelector(".restart").addEventListener("click",function(){ 9 | computer=getRandom(); 10 | score=20; 11 | document.querySelector("body").classList.remove("correct"); 12 | document.querySelector(".box").textContent="?"; 13 | document.querySelector("h3").textContent="Start guessing..."; 14 | document.querySelector(".score").textContent=""+score; 15 | document.querySelector("input").value=""; 16 | document.querySelector(".check").addEventListener("click",theListner); 17 | }); 18 | 19 | 20 | document.querySelector(".check").addEventListener("click",theListner); 21 | 22 | 23 | function theListner( ) { 24 | value = Number(document.querySelector("input").value); 25 | check(); 26 | document.querySelector(".score").textContent=""+score; 27 | } 28 | function getRandom() { 29 | return Math.floor(Math.random() * 20) + 1; 30 | } 31 | 32 | function check() { 33 | if (!value) { 34 | document.querySelector("h3").textContent = "No number"; 35 | } else if (value < computer) { 36 | document.querySelector("h3").textContent = "Too low📉"; 37 | score--; 38 | } else if (value > computer) { 39 | document.querySelector("h3").textContent = "Too high📈"; 40 | score--; 41 | } else { 42 | document.querySelector("h3").textContent = "Correct!!!☑️"; 43 | document.querySelector(".box").textContent=""+computer; 44 | document.querySelector(".check").removeEventListener("click",theListner); 45 | setHigh(); 46 | document.querySelector("body").classList.add("correct"); 47 | } 48 | if(score===0){ 49 | document.querySelector("h3").textContent="You lost the game ❌"; 50 | document.querySelector(".check").removeEventListener("click",theListner); 51 | 52 | } 53 | } 54 | 55 | function setHigh(){ 56 | if(highscore 4 | 5 | my simple HTML page 6 | 7 | 8 |

welcome to my simple HTML page

9 |

This is a paragraph of text that explains what this page is about. I am using HTML tags to create different elements on 10 | the page, such as headings, paragraphs, and 11 | images.

12 | An image of a flower 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2023 DevDotCom 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 | -------------------------------------------------------------------------------- /Piyush/Week_1/Day_1/q1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Simple HTML Page of Piyush 7 | 8 | 9 | 10 | 11 |

Welcome to first HTML Page of Piyush

12 | 13 | 14 |

This is a simple HTML page with a heading, a paragraph of text, and an image I hope you like it.

15 | 16 | 17 | lol lol 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /Piyush/Week_1/Day_2/q1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Favorite Books List of Mine 7 | 27 | 28 | 29 | 30 |

My Top 5 Favorite Movies

31 | 32 |
    33 |
  1. The Fast n Furious
  2. 34 |
  3. Peaky Blinders
  4. 35 |
  5. The Social Network
  6. 36 |
  7. Insidious
  8. 37 |
  9. DDLJ
  10. 38 |
39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /Piyush/Week_1/Day_2/q2.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | User Information Form 7 | 8 | 9 | 10 |

My Info

11 | 12 |
13 | 14 | 15 | 16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 |
28 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /Piyush/Week_1/Day_3/q1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Product List 7 | 24 | 25 | 26 | 27 |

LIST OF PRODUCTS

28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 |
Product NamePriceDescription
JOLO CHIPS$10U CANT BEAR IT TOO SPICY AND HOT TO HANDEL
ICE CREAM$2CHOCOLATE FLAVOUR WITH GOOD TASTE
CHOCOLATE$2.1RICH IN FLAVOUR.
52 | 53 | 54 | 55 | -------------------------------------------------------------------------------- /Piyush/Week_1/Day_4/q1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 59 | 60 | 61 | -------------------------------------------------------------------------------- /Questions/Week1.md: -------------------------------------------------------------------------------- 1 | # Week 1 2 | ## Day 1 (HTML Basics): 3 | - Create a simple HTML page with a heading, a paragraph of text, and an image. Include appropriate HTML tags. 4 | 5 | ## Day 2 (HTML Lists and Forms): 6 | - Build a list of your top 5 favorite books or movies using an ordered list. 7 | - Create an HTML form that includes fields for a user's name, email address, and a submit button. 8 | 9 | ## Day 3 (HTML Tables and Images): 10 | - Construct a basic HTML table to display a list of products with columns for product name, price, and description. 11 | - Insert an image into the table you created and set the table's border attribute to control cell spacing. 12 | 13 | ## Day 4 (HTML Links and Navigation): 14 | - Develop a navigation menu for a website using an unordered list. 15 | - Create links within the navigation menu that link to different sections of the same page. 16 | 17 | ## Day 5 (CSS Basics and Styles): 18 | - Style the HTML page from Day 1 by changing the background color, font size, and text color using CSS. 19 | - Apply different font styles to the headings, paragraphs, and list items on your page. 20 | 21 | ## Day 6 (CSS Layout and Positioning): 22 | - Use CSS to center-align the image within its container. 23 | - Create a CSS class that adds a border around an element and apply it to your form fields. 24 | 25 | ## Day 7 (CSS Effects and Hover States): 26 | - Build a button that changes color when you hover over it using CSS. 27 | - Add hover effects to the navigation menu links from Day 4. Change the link color or background color on hover. 28 | -------------------------------------------------------------------------------- /Questions/Week2.md: -------------------------------------------------------------------------------- 1 | # Week 2 2 | ## Day 8 (JavaScript Basics): 3 | - Introduce a JavaScript script in your HTML page from Day 1. Use `console.log()` to output a message. 4 | - Create variables for the name and age. Use these variables to display a personalized greeting. 5 | 6 | ## Day 9 (JavaScript Functions): 7 | - Write a JavaScript function that calculates the area of a rectangle (length * width). Call this function with different values and display the results. 8 | 9 | ## Day 10 (JavaScript Events): 10 | - Add a button to your HTML form from Day 2. Use JavaScript to show an alert when the button is clicked. 11 | 12 | ## Day 11 (DOM Manipulation): 13 | - Change the content of an HTML element using JavaScript. For example, update the text of a paragraph or the source of an image dynamically. 14 | 15 | ## Day 12 (Responsive Design): 16 | - Apply media queries in your CSS to make your page responsive. Test how it looks on different screen sizes. 17 | 18 | ## Day 13 (JavaScript Validation): 19 | - Enhance your form from Day 2 by adding JavaScript validation. Ensure that the name is not empty, and the email follows a valid format. 20 | 21 | ## Day 14 (Project Day): 22 | - Challenge participants to create a small project that incorporates HTML, CSS, and JavaScript. It could be a simple interactive webpage, a form with dynamic behavior, or a basic game. 23 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # WebCraftersCorner 2 | 3 | Welcome to the WebCraftersCorner repository by DevDotCom! This repository is designed to help you enhance your web development skills through a structured set of practice questions. Whether you're a beginner looking to build a strong foundation or an experienced developer aiming to sharpen your web development skills, this repository is for you. 4 | 5 | ## Introduction 6 | 7 | Web development is a dynamic field with a diverse set of technologies and concepts. To become proficient in web development, it's essential to practice and apply your knowledge in HTML, CSS, and JavaScript. 8 | 9 | The Web Development Practice Questions repository offers a comprehensive set of practice questions divided into weeks, with each week containing daily exercises. This structured approach allows you to progress gradually and steadily improve your web development skills. 10 | 11 | ## How to Use 12 | 13 | You can use these practice questions to: 14 | 15 | - Reinforce your understanding of HTML, CSS, and JavaScript fundamentals. 16 | - Explore more advanced web development concepts and problem-solving. 17 | - Develop practical coding skills through real-world examples. 18 | 19 | Simply follow the weekly structure, starting with Week 1, and work through the questions day by day. Each question comes with a suggested list of concepts you should be familiar with to tackle the task successfully. 20 | 21 | If you're just getting started with web development, begin with Week 1 and gradually progress through the weeks. 22 | 23 | ## How to Contribute 24 | 25 | We welcome contributions to improve this repository and make it a valuable resource for web development learners. Here's how you can contribute: 26 | 27 | 1. **Fork the Repository:** Click the "Fork" button in the upper right corner of the repository to create your copy. 28 | 29 | 2. **Create a New Branch:** After forking, create a new branch for your contributions. We recommend naming the branch after your name or the feature you're working on. 30 | 31 | ```bash 32 | git checkout -b your-branch-name 33 | ``` 34 | 3. **Add a Folder with Your Name:** After you create a branch, refer to the [Repository File Structure](#repository-file-structure) and add your solutions accordingly. 35 | 36 | ```bash 37 | mkdir your-name 38 | ``` 39 | 4. **Enter the Directory:** Make sure you are in the correct directory while you write your code. 40 | ```bash 41 | cd your-name 42 | cd current-week 43 | ``` 44 | 45 | 5. **Add Your Code:** Place your HTML, CSS, and JavaScript files in your respective day's folder within the "Week_X" directory that you created within your folder name. 46 | 47 | ```bash 48 | git add . 49 | git commit -m "Add solutions for Week X, Day Y" 50 | ``` 51 | 52 | 6. **Push Your Code:** Commit your changes and push the branch to your forked repository. 53 | 54 | ```bash 55 | git push origin your-branch-name 56 | ``` 57 | 58 | 7. **Create a Pull Request (PR):** Navigate to your forked repository on GitHub and click the "New Pull Request" button. Make sure to set the base branch to the original repository's branch. 59 | 60 | 8. **Describe Your Changes:** In the PR description, explain the purpose of your changes, mention the questions you've added or modified, and any other relevant information. 61 | 62 | 9. **Submit the PR:** Submit the pull request, and it will be reviewed by the repository maintainers. 63 | 64 | 65 | ## Practice Problems 66 | 67 | The practice problems are available in `Questions` folder. 68 | 69 | [Click here](Questions/Week1.md) for the Questions of Week1.
70 | [Click here](Questions/Week2.md) for the Questions of Week2. 71 | 72 | The folder follows the following structure: 73 | 74 | ``` 75 | questions/ 76 | │ 77 | ├── Week1.md 78 | ├── Week2.md 79 | . 80 | . 81 | ``` 82 | 83 | 84 | ## Repository File Structure 85 | 86 | To keep your work organized, we recommend following this file structure when submitting your solutions: 87 | 88 | ``` 89 | Your_Name/ 90 | ├── Week_1/ 91 | │ ├── Day_1/ 92 | │ │ ├── q1.html 93 | │ │ ├── q2.css 94 | │ │ └── q3.js 95 | │ │ 96 | │ ├── Day_2/ 97 | │ │ ├── q1.html 98 | │ │ ├── q2.css 99 | │ │ └── q3.js 100 | │ │ 101 | │ └── ... 102 | │ 103 | ├── Week_2/ 104 | │ ├── Day_1/ 105 | │ │ ├── q1.html 106 | │ │ ├── q2.css 107 | │ │ └── q3.js 108 | │ │ 109 | │ ├── Day_2/ 110 | │ │ ├── q1.html 111 | │ │ ├── q2.css 112 | │ │ └── q3.js 113 | │ │ 114 | │ └── ... 115 | │ 116 | └── ... 117 | 118 | ``` 119 | 120 | 121 | -------------------------------------------------------------------------------- /Rupam/Week1/Day1/qs1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 2023 CRICKET WORLD CUP 7 | 8 | 9 |

2023 CRICKET WORLD CUP

10 |

The 2023 ICC Men's Cricket World Cup is the 13th edition of the Cricket World Cup, a quadrennial One Day International (ODI) cricket tournament contested by men's national teams and organised by the International Cricket Council (ICC). The tournament is being hosted by India. It started on 5 October and is scheduled to conclude on 19 November 2023.Ten national teams are participating. All had to qualify for the tournament through the 2023 Cricket World Cup qualification process. India qualified as hosts; Afghanistan, Australia, Bangladesh, England, New Zealand, Pakistan and South Africa qualified via the ICC Cricket World Cup Super League, with the Netherlands and Sri Lanka securing the final two places via the qualifier tournament in Zimbabwe during June and July 2023. The West Indies missed out on qualification for the first time in their history. All teams were asked to finalise their 15-player squads prior to 28 September, with any replacements after this date requiring approval from the ICC. A selection panel chose 16 officials to umpire and referee at the matches. The host broadcaster is Star Sports, with various affiliates offering coverage around the world. 11 | 12 | It is the first men's Cricket World Cup which India is hosting solely. The tournament is taking place in ten different stadiums, in ten cities across the country. The first semi-final between India and New Zealand will be held at Wankhede Stadium on 15 November, while the second semi-final between South Africa and Australia will be held at Eden Gardens on 16 November. The final will take place at Narendra Modi Stadium on 19 November, with the winning team receiving US$4,000,000 in prize money. 13 | 14 | The top eight placed teams in the tournament's final points table qualified for the 2025 ICC Champions Trophy, the next ICC ODI tournament.

15 | All Team Captain Picture 16 | 17 | -------------------------------------------------------------------------------- /Rupam/Week1/Day2/q1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Favorite Movies List 7 | 8 | 9 |
    10 |

    My Top 5 Favorite Movies List

    11 |
  1. KGF2
  2. 12 |
  3. Jawan
  4. 13 |
  5. Pathan
  6. 14 |
  7. Jailer
  8. 15 |
  9. Leo
  10. 16 |
17 | 18 | -------------------------------------------------------------------------------- /Rupam/Week1/Day2/q2.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | HTML Form 7 | 8 | 9 | 10 | 11 | 12 |
13 |
14 | Enter Your Email Address 15 | 16 |
17 |
18 | 19 |
20 | 21 | -------------------------------------------------------------------------------- /Rupam/Week1/Day3/q1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | List Of Product In A Table 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 |
Product List
Product NamePriceDescription
iPhone 15 Pro Max1,59,900A17 pro hexa core processor
Samsung Galaxy S23 ultra1,24,999Qualcomm snapdragon 8gen2 processer
Google pixel 8 Pro1,09000 Google Tensor G3 processor
one plus 1161,999 Qualcomm snapdragon 8gen2 processor
nothing phone 247,999Qualcomm snapdragon 8+gen2 processor
42 | 43 | -------------------------------------------------------------------------------- /Rupam/Week1/Day3/q2.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Modify List Of Product In A Table 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 24 | 25 | 26 | 27 | 28 | 29 | 32 | 33 | 34 | 35 | 36 | 39 | 40 | 41 | 42 | 43 | 44 | 47 | 48 | 49 | 50 | 51 | 52 | 55 | 56 | 57 |
Product List
Product NamePriceDescriptionPicture
iPhone 15 Pro Max1,59,900A17 pro hexa core processor 22 | iphone image 23 |
Samsung Galaxy S23 ultra1,24,999Qualcomm snapdragon 8gen2 processer 30 | Samsang phone image 31 |
Google pixel 8 Pro1,09000 Google Tensor G3 processor 37 | Google phone image 38 |
one plus 1161,999 Qualcomm snapdragon 8gen2 processor 45 | one plus phone image 46 |
nothing phone 247,999Qualcomm snapdragon 8+gen2 processor 53 | nothing phone image 54 |
58 | 59 | -------------------------------------------------------------------------------- /Rupam/Week1/Day4/q1/about.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | About 7 | 8 | 9 |

This is my About page

10 | 11 | -------------------------------------------------------------------------------- /Rupam/Week1/Day4/q1/contact.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Contact 7 | 8 | 9 |

This is my contact page

10 | 11 | -------------------------------------------------------------------------------- /Rupam/Week1/Day4/q1/education.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Education 7 | 8 | 9 |

This is my education page

10 | 11 | -------------------------------------------------------------------------------- /Rupam/Week1/Day4/q1/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Home 7 | 8 | 9 |

welcome to my Home

10 | 11 | -------------------------------------------------------------------------------- /Rupam/Week1/Day4/q1/q1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Link And Navigation 7 | 8 | 9 | 18 | 19 | -------------------------------------------------------------------------------- /Rupam/Week1/Day4/q2/q2.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Navigation Menu 7 | 30 | 31 | 32 | 37 |
38 |

section1

39 |

This is the content of section1.

40 |
41 |
42 |

section2

43 |

This is the content of section2.

44 |
45 |
46 |

section3

47 |

This is the content of section 3.

48 |
49 | 50 | -------------------------------------------------------------------------------- /Rupam/Week1/Day5/q1/day1qs1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 2023 CRICKET WORLD CUP 7 | 8 | 9 | 10 |

2023 CRICKET WORLD CUP

11 |

The 2023 ICC Men's Cricket World Cup is the 13th edition of the Cricket World Cup, a quadrennial One Day International (ODI) cricket tournament contested by men's national teams and organised by the International Cricket Council (ICC). The tournament is being hosted by India. It started on 5 October and is scheduled to conclude on 19 November 2023.Ten national teams are participating. All had to qualify for the tournament through the 2023 Cricket World Cup qualification process. India qualified as hosts; Afghanistan, Australia, Bangladesh, England, New Zealand, Pakistan and South Africa qualified via the ICC Cricket World Cup Super League, with the Netherlands and Sri Lanka securing the final two places via the qualifier tournament in Zimbabwe during June and July 2023. The West Indies missed out on qualification for the first time in their history. All teams were asked to finalise their 15-player squads prior to 28 September, with any replacements after this date requiring approval from the ICC. A selection panel chose 16 officials to umpire and referee at the matches. The host broadcaster is Star Sports, with various affiliates offering coverage around the world. 12 | 13 | It is the first men's Cricket World Cup which India is hosting solely. The tournament is taking place in ten different stadiums, in ten cities across the country. The first semi-final between India and New Zealand will be held at Wankhede Stadium on 15 November, while the second semi-final between South Africa and Australia will be held at Eden Gardens on 16 November. The final will take place at Narendra Modi Stadium on 19 November, with the winning team receiving US$4,000,000 in prize money. 14 | 15 | The top eight placed teams in the tournament's final points table qualified for the 2025 ICC Champions Trophy, the next ICC ODI tournament.

16 | All Team Captain Picture 17 | 18 | -------------------------------------------------------------------------------- /Rupam/Week1/Day5/q1/qs1.css: -------------------------------------------------------------------------------- 1 | h1{ 2 | color: blue; 3 | background-color: #c4feff; 4 | text-align: center; 5 | padding: 8px; 6 | margin: 5px; 7 | } 8 | p{ 9 | font-size: 20px; 10 | color: #a020f0; 11 | } -------------------------------------------------------------------------------- /Rupam/Week1/Day5/q2/day5q2.css: -------------------------------------------------------------------------------- 1 | h1{ 2 | background-color: #ac92eb; 3 | text-align: center; 4 | color: #8c12fb; 5 | font-style: initial; 6 | padding: 20px; 7 | margin: 5px; 8 | } 9 | 10 | h2{ 11 | background-color: #a0d568; 12 | font-style: inherit; 13 | } 14 | 15 | p{ 16 | color: #ed5564; 17 | font-style: italic; 18 | } 19 | 20 | ul{ 21 | color: #ed5564; 22 | font-style: oblique; 23 | } -------------------------------------------------------------------------------- /Rupam/Week1/Day5/q2/day5q2.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Day5 Practice 7 | 8 | 9 | 10 |

COLLEGE LIFE

11 |

Paragraph About College Life

12 |

College life experience is truly one of a kind. The most common memories people have of college life are definitely goofing around with friends. They remember how the group of friends walked around the college in style and playing silly pranks on each other.Moreover, people always look back at the times spent in the college canteen. It was considered the hub of every student where they enjoyed eating and chatting away with their friends.Another college life experience I have seen people cherish the most is the annual fest. The annual fest created so much excitement and buzz amongst the students. Everyone welcomed other colleges with open arms and also made friends there. All the competitions were carried out in a good spirit and the students dressed their best to represent their college well. 13 |

14 |

Importance of College Life

15 | 22 | 23 | -------------------------------------------------------------------------------- /Rupam/Week1/Day6/q1/day6qs1.css: -------------------------------------------------------------------------------- 1 | img{ 2 | display: block; 3 | width: 60%; 4 | margin: auto; 5 | } 6 | 7 | h1{ 8 | background-color: aqua; 9 | color: blue; 10 | text-align: center; 11 | padding: 20px; 12 | margin: 8px; 13 | font-family: 'Times New Roman', Times, serif; 14 | } 15 | 16 | p{ 17 | font-size: 20px; 18 | font-family: arial; 19 | } 20 | 21 | body{ 22 | margin: auto; 23 | padding: 20px; 24 | background-color:#f6eff1 ; 25 | } -------------------------------------------------------------------------------- /Rupam/Week1/Day6/q1/day6qs1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Center Align Image 7 | 8 | 9 | 10 |

Center Align The Image

11 |

In this example, the css margin and display use to center the image below.Once the display property is set to"Block"and the image width to fixed percentage,the mergin of the left and right are set to "auto".

12 | image 13 | 14 | -------------------------------------------------------------------------------- /Rupam/Week1/Day6/q2/day6qs2.css: -------------------------------------------------------------------------------- 1 | form{ 2 | background-color: lightskyblue; 3 | display: block; 4 | width: 50%; 5 | margin: auto; 6 | border: 2px solid blue; 7 | padding: 50px; 8 | padding-top: 20px; 9 | } 10 | 11 | h1{ 12 | background-color: aqua; 13 | color: blue; 14 | text-align: center; 15 | border: 1px solid blue; 16 | } 17 | .data_input{ 18 | border: 1px solid blue; 19 | } 20 | 21 | button{ 22 | color: blue; 23 | background-color: aqua; 24 | border: 1px solid blue; 25 | } 26 | label{ 27 | color: blue; 28 | } -------------------------------------------------------------------------------- /Rupam/Week1/Day6/q2/day6qs2.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Border Around An Element 7 | 8 | 9 | 10 |
11 |

Input Persional Details

12 |
13 |
14 | 15 | 16 |
17 |
18 |
19 | 20 | 21 |
22 |
23 |
24 | 25 | 26 |
27 |
28 |
29 | 30 | 31 |
32 |
33 |
34 | 35 | 36 |
37 |
38 |
39 | 40 |
41 |
42 |
43 | 44 | -------------------------------------------------------------------------------- /Tuhin_Poddar/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "liveServer.settings.port": 5501 3 | } 4 | -------------------------------------------------------------------------------- /Tuhin_Poddar/Week_1/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "liveServer.settings.port": 5501 3 | } 4 | -------------------------------------------------------------------------------- /Tuhin_Poddar/Week_1/Day_1/q1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Day 1 7 | 8 | 9 |

Lorem ipsum dolor sit amet.

10 |

11 | Lorem ipsum dolor sit amet consectetur, adipisicing elit. Hic magnam quis 12 | obcaecati ut provident officiis voluptas tempore, esse laboriosam saepe. 13 |

14 | html css js 15 | 16 | 17 | -------------------------------------------------------------------------------- /Tuhin_Poddar/Week_1/Day_1/q1_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevDotCommunity/WebCraftersCorner/f7050b6a729e3e849ae71730ab03c06838071c64/Tuhin_Poddar/Week_1/Day_1/q1_image.png -------------------------------------------------------------------------------- /Tuhin_Poddar/Week_1/Day_2/q1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | My Top 5 Favorite Movies 7 | 8 | 9 |
    10 |
  1. Tenet
  2. 11 |
  3. Dune
  4. 12 |
  5. No Time to Die
  6. 13 |
  7. Spider-Man: No Way Home
  8. 14 |
  9. The Matrix Resurrections
  10. 15 |
16 | 17 | 18 | -------------------------------------------------------------------------------- /Tuhin_Poddar/Week_1/Day_2/q2.css: -------------------------------------------------------------------------------- 1 | input[type="submit"] { 2 | background-color: blue; 3 | color: white; 4 | padding: 8px 16px; 5 | border: none; 6 | border-radius: 4px; 7 | cursor: pointer; 8 | } 9 | -------------------------------------------------------------------------------- /Tuhin_Poddar/Week_1/Day_2/q2.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | User Information 7 | 8 | 9 | 10 |

User Information

11 |
12 |
13 |

14 | 15 |
16 |

17 | 18 | 19 |
20 | 21 | 22 | -------------------------------------------------------------------------------- /Tuhin_Poddar/Week_1/Day_3/Product_Images/Product_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevDotCommunity/WebCraftersCorner/f7050b6a729e3e849ae71730ab03c06838071c64/Tuhin_Poddar/Week_1/Day_3/Product_Images/Product_1.jpg -------------------------------------------------------------------------------- /Tuhin_Poddar/Week_1/Day_3/Product_Images/Product_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevDotCommunity/WebCraftersCorner/f7050b6a729e3e849ae71730ab03c06838071c64/Tuhin_Poddar/Week_1/Day_3/Product_Images/Product_2.jpg -------------------------------------------------------------------------------- /Tuhin_Poddar/Week_1/Day_3/Product_Images/Product_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevDotCommunity/WebCraftersCorner/f7050b6a729e3e849ae71730ab03c06838071c64/Tuhin_Poddar/Week_1/Day_3/Product_Images/Product_3.jpg -------------------------------------------------------------------------------- /Tuhin_Poddar/Week_1/Day_3/q1.css: -------------------------------------------------------------------------------- 1 | table { 2 | border-collapse: collapse; 3 | } 4 | 5 | th, 6 | td { 7 | border: 1px solid #000; 8 | padding: 8px; 9 | text-align: left; 10 | } 11 | img { 12 | width: 200px; 13 | height: 200px; 14 | } 15 | -------------------------------------------------------------------------------- /Tuhin_Poddar/Week_1/Day_3/q1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Product List 7 | 8 | 9 | 10 |

Product List

11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 29 | 30 | 31 | 32 | 33 | 34 | 37 | 38 | 39 | 40 | 41 | 47 | 50 | 51 | 52 |
Product NamePriceDescriptionImage
Men's Shoes₹729Centrino Mens Formal Shoes 27 | Product 1 28 |
Hooded Bomber Jacket₹1,129Solid Full Sleeves Regular Fit Bomber Jacket 35 | Product 2 36 |
Wired On Ear Headphone₹399 42 | Zebronics Zeb-Storm Wired On Ear Headphone with 3.5mm Jack, Built-in 43 | Microphone for Calling, 1.5 Meter Cable, Soft Ear Cushion, 44 | Adjustable Headband, Foldable Ear Cups and Lightweight Design 45 | (Black) 46 | 48 | Product 3 49 |
53 | 54 | 55 | -------------------------------------------------------------------------------- /Tuhin_Poddar/Week_1/Day_4/q1.css: -------------------------------------------------------------------------------- 1 | .navbar { 2 | background-color: #333; 3 | position: fixed; 4 | top: 0; 5 | left: 0; 6 | width: 100%; 7 | z-index: 1000; 8 | height: 24px; 9 | } 10 | 11 | .nav-links { 12 | list-style-type: none; 13 | margin: 0; 14 | padding: 0; 15 | display: flex; 16 | justify-content: center; 17 | align-items: center; 18 | } 19 | 20 | .nav-links li { 21 | margin: 0 15px; 22 | } 23 | 24 | .nav-links a { 25 | color: white; 26 | text-decoration: none; 27 | transition: color 0.3s ease; 28 | } 29 | 30 | .nav-links a:hover { 31 | color: #ffc107; 32 | } 33 | 34 | /* Styles for sections */ 35 | .section { 36 | padding: 80px 0; 37 | text-align: center; 38 | font-family: Arial, sans-serif; 39 | background-color: #f5f5f5; 40 | } 41 | 42 | .section h2 { 43 | margin-bottom: 20px; 44 | } 45 | -------------------------------------------------------------------------------- /Tuhin_Poddar/Week_1/Day_4/q1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Navigation Menu 7 | 8 | 9 | 10 | 18 | 19 |
20 |

Home Section

21 |

I am home section.

22 |
23 | 24 |
25 |

About Section

26 |

I am about section.

27 |
28 | 29 |
30 |

Services Section

31 |

I am services section.

32 |
33 | 34 |
35 |

Contact Section

36 |

I am contact section.

37 |
38 | 39 | 40 | -------------------------------------------------------------------------------- /Tuhin_Poddar/Week_1/Day_5/q1.css: -------------------------------------------------------------------------------- 1 | body { 2 | background-color: #4c4949; 3 | color: #d3cccc; 4 | font-family: Arial, sans-serif; 5 | font-size: 16px; 6 | } 7 | 8 | h1 { 9 | font-family: "Times New Roman", Times, serif; 10 | font-size: 28px; 11 | color: #009688; 12 | } 13 | 14 | p { 15 | font-family: Verdana, Geneva, sans-serif; 16 | font-size: 18px; 17 | } 18 | 19 | li { 20 | font-family: "Courier New", Courier, monospace; 21 | font-size: 14px; 22 | } 23 | -------------------------------------------------------------------------------- /Tuhin_Poddar/Week_1/Day_5/q1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Day 5 7 | 8 | 9 | 10 |

Lorem ipsum dolor sit amet.

11 |

12 | Lorem ipsum dolor sit amet consectetur, adipisicing elit. Hic magnam quis 13 | obcaecati ut provident officiis voluptas tempore, esse laboriosam saepe. 14 |

15 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /Tuhin_Poddar/Week_1/Day_5/q1_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevDotCommunity/WebCraftersCorner/f7050b6a729e3e849ae71730ab03c06838071c64/Tuhin_Poddar/Week_1/Day_5/q1_image.png -------------------------------------------------------------------------------- /Tuhin_Poddar/Week_1/Day_6/q1.css: -------------------------------------------------------------------------------- 1 | .container { 2 | display: flex; 3 | justify-content: center; 4 | align-items: center; 5 | } 6 | 7 | .container img { 8 | max-width: 100%; 9 | } 10 | -------------------------------------------------------------------------------- /Tuhin_Poddar/Week_1/Day_6/q1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Day 6 7 | 8 | 9 | 10 |
11 | Centered Image 12 |
13 | 14 | 15 | -------------------------------------------------------------------------------- /Tuhin_Poddar/Week_1/Day_6/q2.css: -------------------------------------------------------------------------------- 1 | .bordered-input { 2 | border: 1px solid rgb(35, 43, 37); 3 | padding: 8px; 4 | display: flex; 5 | border-radius: 4px; 6 | } 7 | -------------------------------------------------------------------------------- /Tuhin_Poddar/Week_1/Day_6/q2.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Day 6 7 | 8 | 9 | 10 |
11 | 12 | 13 |
14 | 15 | 16 | -------------------------------------------------------------------------------- /Tuhin_Poddar/Week_1/Day_7/q1.css: -------------------------------------------------------------------------------- 1 | body { 2 | background-color: #f0f0f0; 3 | font-family: Arial, sans-serif; 4 | color: #333; 5 | } 6 | 7 | h1, 8 | h2, 9 | h3 { 10 | font-family: "Times New Roman", Times, serif; 11 | color: #0066cc; 12 | } 13 | 14 | p { 15 | font-style: italic; 16 | } 17 | 18 | ul { 19 | list-style-type: none; 20 | margin: 0; 21 | padding: 0; 22 | } 23 | 24 | nav ul li { 25 | display: inline; 26 | margin-right: 15px; 27 | } 28 | 29 | nav ul li:hover { 30 | background-color: #ddd; 31 | } 32 | 33 | table { 34 | border-collapse: collapse; 35 | width: 80%; 36 | margin: 20px auto; 37 | } 38 | 39 | table, 40 | th, 41 | td { 42 | border: 1px solid #666; 43 | padding: 8px; 44 | text-align: left; 45 | } 46 | 47 | .bordered { 48 | border: 1px solid #ccc; 49 | } 50 | 51 | input[type="text"], 52 | input[type="email"], 53 | input[type="submit"] { 54 | border: 1px solid #999; 55 | padding: 5px; 56 | margin-bottom: 10px; 57 | } 58 | 59 | input[type="submit"]:hover { 60 | background-color: #0066cc; 61 | color: #fff; 62 | } 63 | -------------------------------------------------------------------------------- /Tuhin_Poddar/Week_1/Day_7/q1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | My Website 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 |

Welcome to My Website

16 | 23 |
24 | 25 |
26 |
27 |

Section 1: Simple HTML Page

28 |

29 | This is a simple HTML page with a heading, a paragraph of text, and an 30 | image: 31 |

32 | Placeholder Image 37 |
38 | 39 |
40 |

Section 2: Top 5 Favorite Books/Movies

41 |
    42 |
  1. Book/Movie 1
  2. 43 |
  3. Book/Movie 2
  4. 44 |
  5. Book/Movie 3
  6. 45 |
  7. Book/Movie 4
  8. 46 |
  9. Book/Movie 5
  10. 47 |
48 |
49 | 50 |
51 |

Section 3: HTML Form

52 |
53 |
54 |
55 | 56 |
57 |
58 | 59 |
60 |

Section 4: HTML Table

61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 75 | 76 | 77 |
Product NamePriceDescriptionImage
Product 1$10Description of Product 1 73 | Product Image 74 |
78 |
79 |
80 | 81 | 82 | 83 | 84 | -------------------------------------------------------------------------------- /Tuhin_Poddar/Week_2/Day_10/.hintrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends": [ 3 | "development" 4 | ], 5 | "hints": { 6 | "button-type": "off" 7 | } 8 | } -------------------------------------------------------------------------------- /Tuhin_Poddar/Week_2/Day_10/q1.css: -------------------------------------------------------------------------------- 1 | input[type="submit"], 2 | #showAlert { 3 | background-color: blue; 4 | color: white; 5 | padding: 8px 16px; 6 | border: none; 7 | border-radius: 4px; 8 | cursor: pointer; 9 | } 10 | -------------------------------------------------------------------------------- /Tuhin_Poddar/Week_2/Day_10/q1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | day 10 7 | 8 | 9 | 10 |

User Information

11 |
12 |
13 |

14 | 15 |
16 |

17 | 18 | 19 | 20 |
21 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /Tuhin_Poddar/Week_2/Day_10/q1.js: -------------------------------------------------------------------------------- 1 | const showAlertButton = document.getElementById("showAlert"); 2 | showAlertButton.addEventListener("click", function () { 3 | alert("Button clicked!"); 4 | }); 5 | -------------------------------------------------------------------------------- /Tuhin_Poddar/Week_2/Day_11/img1.jfif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevDotCommunity/WebCraftersCorner/f7050b6a729e3e849ae71730ab03c06838071c64/Tuhin_Poddar/Week_2/Day_11/img1.jfif -------------------------------------------------------------------------------- /Tuhin_Poddar/Week_2/Day_11/img2.jfif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevDotCommunity/WebCraftersCorner/f7050b6a729e3e849ae71730ab03c06838071c64/Tuhin_Poddar/Week_2/Day_11/img2.jfif -------------------------------------------------------------------------------- /Tuhin_Poddar/Week_2/Day_11/q1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Day 11 7 | 8 | 9 |

Initial paragraph text.

10 | Initial Image 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /Tuhin_Poddar/Week_2/Day_11/q1.js: -------------------------------------------------------------------------------- 1 | var paragraph = document.getElementById("myParagraph"); 2 | if (paragraph !== null) { 3 | paragraph.textContent = "New text for the paragraph."; 4 | } else { 5 | console.error("Paragraph element not found."); 6 | } 7 | 8 | var image = document.getElementById("myImage"); 9 | if (image !== null) { 10 | image.src = "img2.jfif"; 11 | image.alt = "New Image Alt Text"; 12 | } else { 13 | console.error("Image element not found."); 14 | } 15 | -------------------------------------------------------------------------------- /Tuhin_Poddar/Week_2/Day_12/q1.css: -------------------------------------------------------------------------------- 1 | body { 2 | font-family: Arial, sans-serif; 3 | margin: 0; 4 | padding: 0; 5 | background-color: #f2f2f2; 6 | } 7 | 8 | .container { 9 | width: 80%; 10 | margin: 0 auto; 11 | background-color: white; 12 | padding: 20px; 13 | box-sizing: border-box; 14 | } 15 | 16 | /* Media query for screens smaller than 600px */ 17 | @media (max-width: 600px) { 18 | .container { 19 | width: 90%; 20 | padding: 10px; 21 | } 22 | } 23 | 24 | /* Media query for screens between 601px and 900px */ 25 | @media (min-width: 601px) and (max-width: 900px) { 26 | .container { 27 | width: 70%; 28 | } 29 | } 30 | 31 | /* Media query for screens larger than 901px */ 32 | @media (min-width: 901px) { 33 | .container { 34 | width: 60%; 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /Tuhin_Poddar/Week_2/Day_12/q1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Day 12 7 | 8 | 9 | 10 |
11 |

Responsive Page

12 |

13 | This is a sample content. Resize the browser window to see how the 14 | layout changes based on different screen sizes. 15 |

16 |
17 | 18 | 19 | -------------------------------------------------------------------------------- /Tuhin_Poddar/Week_2/Day_8/q1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Day 8 7 | 8 | 9 |

Lorem ipsum dolor sit amet.

10 |

11 | Lorem ipsum dolor sit amet consectetur, adipisicing elit. Hic magnam quis 12 | obcaecati ut provident officiis voluptas tempore, esse laboriosam saepe. 13 |

14 | html css js 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /Tuhin_Poddar/Week_2/Day_8/q1.js: -------------------------------------------------------------------------------- 1 | var name = "Tuhin"; 2 | var age = 19; 3 | console.log("Welcome to week 2 of WebCraftersCorner"); 4 | console.log("Hello, " + name + "! You are " + age + " years old."); 5 | -------------------------------------------------------------------------------- /Tuhin_Poddar/Week_2/Day_8/q1_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevDotCommunity/WebCraftersCorner/f7050b6a729e3e849ae71730ab03c06838071c64/Tuhin_Poddar/Week_2/Day_8/q1_image.png -------------------------------------------------------------------------------- /Tuhin_Poddar/Week_2/Day_9/q1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Day 9 7 | 8 | 9 | 10 | 11 | 12 | 13 | 28 | 29 | 30 | --------------------------------------------------------------------------------