Task Application

Program Details

HTML: HTML (Hypertext Markup Language) is used to structure the content and define the elements of a web page.

In this code, the HTML is used to define the structure and layout of the task manager application. It includes the title, a heading, an input field, and an unordered list for displaying the tasks.

CSS: CSS (Cascading Style Sheets) is used to describe the presentation and styling of the HTML elements.

In this code, CSS is used to style the various elements of the task manager application. It includes styles for the body, headings, input field, buttons, and task list. The defined styles control the font, alignment, margins, padding, and appearance of the elements.

JavaScript: JavaScript is a programming language that allows interactivity and dynamic behavior on web pages.

In this code, JavaScript is used to handle the functionality of the task manager application. It defines the addTask() function, which is called when the "Add Task" button is clicked. The addTask() function performs the following tasks: