This repository contains three simple web development tasks using HTML, CSS, and JavaScript. These exercises will help beginners build logic and get comfortable with front-end development.
Create a button that changes the background color of the webpage when clicked.
- Create an HTML file with a button.
- Use CSS to style it.
- Use JavaScript to generate a random color and apply it to the background when clicked.
Create a simple to-do list where users can add tasks and remove them by clicking.
- Create an input box and a button.
- When the button is clicked, get the input value and add it as a new list item.
- Allow tasks to be removed by clicking on them.
Create an input field for a password with a button to toggle visibility.
- Create an
input type="password"and a button. - When the button is clicked, change the input type to
textorpassword. - Update the button text accordingly.
Note : Do not use Chat gpt and other AI tools to solve and complete the task no. 1