This repository contains three web development tasks using HTML, CSS, and JavaScript. These exercises will help beginners build logic and get comfortable with front-end development.
Create a login form with a neumorphic (soft UI) design.
- Use HTML to structure a login form with input fields for email and password.
- Use CSS to apply a neumorphic effect using
box-shadow
andborder-radius
. - Ensure a smooth hover effect and proper focus styling for inputs.
Create a card slider that adjusts dynamically based on the screen size.
- Use HTML to create multiple content cards inside a container.
- Use CSS Flexbox or Grid to align the cards properly.
- Implement a smooth horizontal scrolling effect using
overflow-x: auto
. - Ensure responsiveness so that cards adjust based on screen width.
Create a simple quiz application where users answer multiple-choice questions, and the score is calculated using JavaScript with OOP concepts.
- Use HTML to create a quiz interface with questions and options.
- Use JavaScript to:
- Implement a class-based structure for managing questions.
- Use a
switch
statement to evaluate different question types. - Utilize conditional statements to check answers and calculate the final score.
- Display the user’s score at the end and provide feedback.