Rupali
@rupali317All solutions
- Submitted 4 months ago
Newsletter sign up and success message using Vanilla Javascript
- HTML
- CSS
- JS
What do you think about the accessibility aspect of my code? Please suggest improvements
- Submitted 4 months ago
Created the article preview component using vanilla JS
- HTML
- CSS
- JS
What do you think of the accessibility of my solution? (especially related to summoning and dismissing the tooltip)
HTML code snippet
...
JS code snippet
function toggleShareButtonAttributes() { if (tooltip.classList.contains("invisible")) { shareButton.removeAttribute("aria-describedby"); shareButton.setAttribute("aria-expanded", "false"); } else { shareButton.setAttribute("aria-describedby", "tooltip"); shareButton.setAttribute("aria-expanded", "true"); } }
- Submitted 5 months ago
Built with using only HTML , CSS and my own coded SVGs
- HTML
- CSS
Feel free to comment on my code and suggest improvements especially on code structure and accessibility
- Submitted 6 months ago
Skilled elearning landing page using CSS grids
- HTML
- CSS
I do not have any questions. I am open for feedback on writing cleaner code and accessibility. I am always looking for ways to improve my code.
- Submitted 6 months ago
Workit landing page using React, styled components, grids
- HTML
- CSS
I do not have any doubts so far. I am always open to feedback on any aspect of my code. Looking forward to your responses.
- Submitted 7 months ago
Testimonial section using CSS grids
- HTML
- CSS
I did not face major challenges in this project.
However, I appreciate any feedback on how I can improve the accessibility and refactor the code in a better way
- Submitted 7 months ago
Used Advice Slip API to generate advice
- HTML
- CSS
- JS
- API
How to effectively solve the caching issue in Firefox? (Kindly refer to my answer to "What challenges did you encounter, and how did you overcome them?")
- Submitted 8 months ago
Intro component sign up form using React
- HTML
- CSS
- JS
I do not have any questions so far for this project. I am always open for feedback on my code.
- Submitted 8 months ago
Implemented the solution without Javascript
- HTML
- CSS
- JS
I struggled with the positioning of the images and I also used fixed height and fixed width for the images. I usually hear that using fixed width and fixed height are not recommended.
Please refer to my source code files:
- /src/styles/Card.style.jsx
- /src/components/Card/Card.jsx
What is a better way of handling the display of these images?