Dive into Our Exclusive Machine Coding Challenge!Create a simple landing page with navbar and hero section using HTML and CSS <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <style> body { margin:...Mar 3, 2024·4 min read
Frontend Developer Interview QuestionTop Interview Questions for Aspiring DevelopersJul 3, 2023·7 min read
Mastering the Frontend: Exploring Advanced Techniques and Best Practices in HTML, CSS, JavaScript, and ReactHow to implement different lifecycle methods using useEffect? How to do this? componentDidMount: To mock componentDidMount, use the useEffect hook with an empty dependency array - this will execute the callback function passes as its first parameter...May 29, 2023·9 min read
Mastering Frontend Topics Before Your Interview: Essential Skills and StrategiesDifference between useEffect and useState? Intro line: useState and useEffect both are hooks that are most commonly used in any React application. 3 points of comparison: i. Purpose: useState: Used to manage state within a component. useEffect: Use...May 28, 2023·7 min read
Interview Question series Frontend Developer RoleWhat is the difference between position: relative and position: absolute? 2 points compared & contrasted i. Positioned relative to: Relative positioned element is positioned relative to its normal position. Absolute is relative to the first parent ...May 25, 2023·5 min read