You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+42-11
Original file line number
Diff line number
Diff line change
@@ -23,6 +23,11 @@
23
23
24
24
The challenge is to create a Recipe Page Component, a webpage showcasing recipes in a structured list manner with proper steps and indentation marked for an in-depth explanation of the processes involved at each step, accompanied by images for users to follow along. Users should be able to see a centralized responsive page, ensuring that the structure of the webpage and images are visible wide and clear in the proper format and order.
25
25
26
+
Users should be able to:
27
+
28
+
- View the optimal layout for the site depending on their device's screen size
29
+
- See hover states for all interactive elements on the page
30
+
26
31
### How to setup the project
27
32
28
33
To set up the project locally, follow these steps:
@@ -36,7 +41,7 @@ To set up the project locally, follow these steps:
36
41
37
42
### Screenshot
38
43
39
-

44
+

40
45
41
46
### Links
42
47
@@ -51,32 +56,58 @@ To set up the project locally, follow these steps:
51
56
- CSS3
52
57
- JavaScript
53
58
59
+
You will find all the required assets in the `/design` folder. The assets are already optimized.
60
+
61
+
There is also a `style-guide.md` file containing the information you'll need, such as color palette and fonts.
62
+
54
63
### What I learned
55
64
56
-
- Highlight key learnings from the project
65
+
This project is the second project that I am making which further has allowed me to learn about further advanced concepts like hover states, centering div inside parent element, flexbox etc as shown in code snippet below-
66
+
67
+
```css
68
+
.mainframe {
69
+
margin: auto;
70
+
display: flex;
71
+
justify-content: center;
72
+
/* align-items: center; */
73
+
flex-direction: column;
74
+
width: 50%;
75
+
padding: 15px;
76
+
margin-top: 7rem;
77
+
margin-bottom: 7rem;
78
+
background-color: var(--rose-white);
79
+
border-radius: 12px;
80
+
box-shadow: 8px 8px 17px rgba(0, 0, 0, 0.244);
81
+
}
82
+
```
57
83
58
84
### Continued development
59
85
60
-
- Outline areas for future development or learning
86
+
The continuously learning journey of a programmer never ends. This project made me realize that there are many concepts that I need to work upon including fundamentals like flex-box and its properties, to more complex concepts like working with fetch and async await in javascript. These areas are some that I think I need to work more upon in the upcoming future as they highlight some of the most significant regions of web development that are important for every developer to know of.
87
+
88
+
These key points mentioned here will help me grow accountable and consistent towards improving at writing good quality code and be a successful full stack developer one day.
61
89
62
90
### Useful resources
63
91
64
-
- List helpful resources used in the project
92
+
- [Harkirat Singh course notes](https://github.com/SartHak-0-Sach/harkirat-singh-course_code_and_notes) - I have added notes of all lectures along with code and lecture insights of all weeks along with bonus lectures to help you all as much as I can.
93
+
- [My development code and notes](https://github.com/SartHak-0-Sach/cwh-web-dev-playlist_code_and_notes) - These are my notes that I made while working on my development skills in initial days and did these courses. Make sure to star the repository if you like it.✨💫
94
+
- [MDN documentation hover state for CSS](https://developer.mozilla.org/en-US/docs/Web/CSS/:hover) - This is an amazing article which helped me finally understand hover states. I'd recommend it to anyone still learning this concept.
- Mention any acknowledgments or credits forresources usedin the project
105
+
I feel like the solutions provided on the website and the continuous doubt solving by industry experts on discord forfree is something that is unmatched by anyone else and need to be acknowledged for their effortsinimproving me as a developer by suggesting the best practices in your respective tech stack.
75
106
76
107
## Got feedback for me?
77
108
78
-
I love receiving feedback! I'm always looking to improve my challenges and my platform. So if you have anything you'd like to mention, please email me at saarsaach[at]gmail[dot]com.
109
+
I love receiving feedback! I am always looking to improve my code and take up new innovative ideas to work upon. So if you have anything you'd like to mention, please email 'hi' at saarsaach30[at]gmail[dot]com.
79
110
80
-
If you found this project helpful, consider sharing it with others to spread the knowledge!
111
+
If you liked this project make sure to spread the word and share it with all your friends.
0 commit comments